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

28 lines
638 B
Nix
Raw Normal View History

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