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

28 lines
638 B
Nix
Raw Normal View History

2018-11-27 21:16:59 +00:00
{ stdenv, fetchurl, libuuid, autoreconfHook }:
stdenv.mkDerivation rec {
2013-01-06 15:47:43 +00:00
name = "jfsutils-1.1.15";
src = fetchurl {
url = "http://jfs.sourceforge.net/project/pub/${name}.tar.gz";
2017-02-24 23:28:47 +00:00
sha256 = "0kbsy2sk1jv4m82rxyl25gwrlkzvl3hzdga9gshkxkhm83v1aji4";
};
2018-11-27 21:16:59 +00:00
patches = [
./types.patch
./hardening-format.patch
# required for cross-compilation
./ar-fix.patch
];
2018-11-27 21:16:59 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libuuid ];
2018-09-07 21:22:13 +01:00
meta = with stdenv.lib; {
description = "IBM JFS utilities";
2018-09-07 21:22:13 +01:00
homepage = http://jfs.sourceforge.net;
license = licenses.gpl3;
platforms = platforms.linux;
};
}