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
36
pkgs/tools/filesystems/httpfs/default.nix
Normal file
36
pkgs/tools/filesystems/httpfs/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ fetchurl, lib, stdenv, pkg-config, fuse, openssl, asciidoc
|
||||
, docbook_xml_dtd_45, docbook_xsl , libxml2, libxslt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "httpfs2";
|
||||
version = "0.1.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/httpfs/httpfs2/httpfs2-${version}.tar.gz";
|
||||
sha256 = "1h8ggvhw30n2r6w11n1s458ypggdqx6ldwd61ma4yd7binrlpjq1";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ pkg-config fuse openssl
|
||||
asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt
|
||||
];
|
||||
|
||||
installPhase =
|
||||
'' mkdir -p "$out/bin"
|
||||
cp -v httpfs2 "$out/bin"
|
||||
|
||||
mkdir -p "$out/share/man/man1"
|
||||
cp -v *.1 "$out/share/man/man1"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "FUSE-based HTTP filesystem for Linux";
|
||||
|
||||
homepage = "http://httpfs.sourceforge.net/";
|
||||
|
||||
license = lib.licenses.gpl2Plus;
|
||||
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue