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