2021-01-15 16:19:50 +07:00
|
|
|
{ lib, stdenv, fetchurl, libuuid, autoreconfHook }:
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2015-04-18 21:37:40 +02:00
|
|
|
let version = "3.6.24"; in
|
2010-07-07 14:23:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "reiserfsprogs";
|
|
|
|
inherit version;
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2008-02-04 14:37:15 +00:00
|
|
|
src = fetchurl {
|
2019-08-13 21:52:01 +00: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 14:37:15 +00:00
|
|
|
};
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2018-11-28 00:13:19 +03:00
|
|
|
patches = [ ./reiserfsprogs-ar-fix.patch ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2010-07-07 14:23:30 +00:00
|
|
|
buildInputs = [ libuuid ];
|
|
|
|
|
2020-02-10 09:45:49 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-std=gnu90" "-D_GNU_SOURCE" ];
|
2015-06-27 15:34:35 -07:00
|
|
|
|
2008-02-04 14:37:15 +00:00
|
|
|
meta = {
|
2015-04-18 21:37:40 +02:00
|
|
|
inherit version;
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://www.namesys.com/";
|
2010-07-07 14:23:30 +00:00
|
|
|
description = "ReiserFS utilities";
|
2021-01-15 16:19:50 +07:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2008-02-04 14:37:15 +00:00
|
|
|
};
|
2007-09-03 12:10:57 +00:00
|
|
|
}
|