uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
23
pkgs/development/python-modules/zeroc-ice/default.nix
Normal file
23
pkgs/development/python-modules/zeroc-ice/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, lib, buildPythonPackage, fetchPypi, openssl, bzip2 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zeroc-ice";
|
||||
version = "3.7.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version pname;
|
||||
sha256 = "415f4a673009fe9a5ef67b61c4469ddf14b73857b6d40f02d6b74f02ad935147";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl bzip2 ];
|
||||
|
||||
pythonImportsCheck = [ "Ice" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
homepage = "https://zeroc.com/";
|
||||
license = licenses.gpl2;
|
||||
description = "Comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more.";
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue