nixpkgs/pkgs/tools/filesystems/jfsutils/default.nix

19 lines
353 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libuuid }:
stdenv.mkDerivation rec {
2013-01-06 19:47:43 +04:00
name = "jfsutils-1.1.15";
src = fetchurl {
url = "http://jfs.sourceforge.net/project/pub/${name}.tar.gz";
2013-01-06 19:47:43 +04:00
sha1 = "291e8bd9d615cf3d27e4000117c81a3602484a50";
};
2013-01-28 20:27:14 +04:00
patches = [ ./types.patch ];
buildInputs = [ libuuid ];
meta = {
description = "IBM JFS utilities";
};
}