From b147842dce82b2e988a64f7fe4ae117cbc6bbec5 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 20 Aug 2010 21:53:43 +0000 Subject: Add nilfs-utils svn path=/nixpkgs/trunk/; revision=23296 --- pkgs/tools/filesystems/nilfs-utils/default.nix | 51 ++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 pkgs/tools/filesystems/nilfs-utils/default.nix (limited to 'pkgs') diff --git a/pkgs/tools/filesystems/nilfs-utils/default.nix b/pkgs/tools/filesystems/nilfs-utils/default.nix new file mode 100644 index 00000000000..b702003fada --- /dev/null +++ b/pkgs/tools/filesystems/nilfs-utils/default.nix @@ -0,0 +1,51 @@ +x@{builderDefsPackage + , libuuid + , ...}: +builderDefsPackage +(a : +let + helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ + []; + + buildInputs = map (n: builtins.getAttr n x) + (builtins.attrNames (builtins.removeAttrs x helperArgNames)); + sourceInfo = rec { + version = "2.0.19"; + url = "http://www.nilfs.org/download/nilfs-utils-${version}.tar.bz2"; + hash = "0q9cb6ny0ah1s9rz1rgqka1pxdm3xvg0ywcqyhzcz4yhamfhg100"; + baseName = "nilfs-utils"; + name = "${baseName}-${version}"; + }; +in +rec { + src = a.fetchurl { + url = sourceInfo.url; + sha256 = sourceInfo.hash; + }; + + inherit (sourceInfo) name version; + inherit buildInputs; + + /* doConfigure should be removed if not needed */ + phaseNames = ["doFixPaths" "doConfigure" "doMakeInstall"]; + + doFixPaths = a.fullDepEntry ('' + sed -e '/sysconfdir=\/etc/d; /sbindir=\/sbin/d' -i configure + '') ["doUnpack" "minInit"]; + + meta = { + description = "NILFS utilities"; + maintainers = with a.lib.maintainers; + [ + raskin + ]; + platforms = with a.lib.platforms; + linux; + }; + passthru = { + updateInfo = { + downloadPage = "http://www.nilfs.org/download/?C=M;O=D"; + }; + }; +}) x + -- cgit 1.4.1