Author: ludo Date: 2010-06-17 12:44:40 +0000 (Thu, 17 Jun 2010) New Revision: 22308
You can view the changes in this commit at: https://svn.nixos.org/viewvc/nix?rev=22308&view=rev Added: nixpkgs/trunk/pkgs/tools/filesystems/httpfs/ nixpkgs/trunk/pkgs/tools/filesystems/httpfs/default.nix Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix Log: Add HTTPFS2, for Linux. Changes: Added: nixpkgs/trunk/pkgs/tools/filesystems/httpfs/default.nix =================================================================== --- nixpkgs/trunk/pkgs/tools/filesystems/httpfs/default.nix (rev 0) +++ nixpkgs/trunk/pkgs/tools/filesystems/httpfs/default.nix 2010-06-17 12:44:40 UTC (rev 22308) @@ -0,0 +1,35 @@ +{ fetchurl, stdenv, pkgconfig, fuse, openssl, asciidoc +, docbook_xml_dtd_45, docbook_xsl , libxml2, libxslt }: + +stdenv.mkDerivation rec { + name = "httpfs2-0.1.4"; + + src = fetchurl { + url = "mirror://sourceforge/httpfs/httpfs2/${name}.tar.gz"; + sha256 = "0vlp6i119lz4ybnrd26hvvwms3h5d7x3jly5nzyyfcw24ngvpk7p"; + }; + + buildInputs = + [ pkgconfig fuse openssl + asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt + ]; + + installPhase = + '' ensureDir "$out/bin" + cp -v httpfs2 "$out/bin" + + ensureDir "$out/share/man/man1" + cp -v *.1 "$out/share/man/man1" + ''; + + meta = { + description = "HTTPFS2, a FUSE-based HTTP file system for Linux"; + + homepage = http://httpfs.sourceforge.net/; + + license = "GPLv2+"; + + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.ludo ]; + }; +} Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix =================================================================== --- nixpkgs/trunk/pkgs/top-level/all-packages.nix 2010-06-17 10:18:13 UTC (rev 22307) +++ nixpkgs/trunk/pkgs/top-level/all-packages.nix 2010-06-17 12:44:40 UTC (rev 22308) @@ -959,6 +959,11 @@ inherit fetchurl stdenv; }; + httpfs2 = import ../tools/filesystems/httpfs { + inherit fetchurl stdenv pkgconfig fuse openssl + asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt; + }; + iasl = import ../development/compilers/iasl { inherit fetchurl stdenv bison flex; }; _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
