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
24
pkgs/servers/felix/default.nix
Normal file
24
pkgs/servers/felix/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{lib, stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "apache-felix";
|
||||
version = "7.0.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://apache/felix/org.apache.felix.main.distribution-${version}.tar.gz";
|
||||
sha256 = "sha256-WypiOdJhqKngIFVNf/XXAUDRdS8rANxWrcT846hcWTo=";
|
||||
};
|
||||
buildCommand =
|
||||
''
|
||||
tar xfvz $src
|
||||
cd felix-framework-*
|
||||
mkdir -p $out
|
||||
cp -av * $out
|
||||
'';
|
||||
meta = with lib; {
|
||||
description = "An OSGi gateway";
|
||||
homepage = "https://felix.apache.org";
|
||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.sander ];
|
||||
};
|
||||
}
|
||||
15
pkgs/servers/felix/remoteshell.nix
Normal file
15
pkgs/servers/felix/remoteshell.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.1.2";
|
||||
pname = "apache-felix-remoteshell-bundle";
|
||||
src = fetchurl {
|
||||
url = "http://apache.proserve.nl/felix/org.apache.felix.shell.remote-${version}.jar";
|
||||
sha256 = "147zw5ppn98wfl3pr32isyb267xm3gwsvdfdvjr33m9g2v1z69aq";
|
||||
};
|
||||
buildCommand =
|
||||
''
|
||||
mkdir -p $out/bundle
|
||||
cp ${src} $out/bundle/org.apache.felix.shell.remote-${version}.jar
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue