2018-11-27 13:13:19 -08:00
|
|
|
{ stdenv, fetchurl, libuuid, autoreconfHook }:
|
2007-09-03 05:10:57 -07:00
|
|
|
|
2015-04-18 12:37:40 -07:00
|
|
|
let version = "3.6.24"; in
|
2010-07-07 07:23:30 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-18 12:37:40 -07:00
|
|
|
name = "reiserfsprogs-${version}";
|
2007-09-03 05:10:57 -07:00
|
|
|
|
2008-02-04 06:37:15 -08:00
|
|
|
src = fetchurl {
|
2015-04-18 12:37:40 -07:00
|
|
|
url = "https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${version}/${name}.tar.xz";
|
|
|
|
sha256 = "0q07df9wxxih8714a3mdp61h5n347l7j2a0l351acs3xapzgwi3y";
|
2008-02-04 06:37:15 -08:00
|
|
|
};
|
2007-09-03 05:10:57 -07:00
|
|
|
|
2018-11-27 13:13:19 -08:00
|
|
|
patches = [ ./reiserfsprogs-ar-fix.patch ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2010-07-07 07:23:30 -07:00
|
|
|
buildInputs = [ libuuid ];
|
|
|
|
|
2015-06-27 15:34:35 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-std=gnu90";
|
|
|
|
|
2008-02-04 06:37:15 -08:00
|
|
|
meta = {
|
2015-04-18 12:37:40 -07:00
|
|
|
inherit version;
|
2008-02-04 06:37:15 -08:00
|
|
|
homepage = http://www.namesys.com/;
|
2010-07-07 07:23:30 -07:00
|
|
|
description = "ReiserFS utilities";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-02-04 06:37:15 -08:00
|
|
|
};
|
2007-09-03 05:10:57 -07:00
|
|
|
}
|