2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, libuuid, autoreconfHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "reiserfsprogs";
|
2021-07-18 21:22:44 +00:00
|
|
|
version = "3.6.24";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${version}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "0q07df9wxxih8714a3mdp61h5n347l7j2a0l351acs3xapzgwi3y";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./reiserfsprogs-ar-fix.patch ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libuuid ];
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-std=gnu90" "-D_GNU_SOURCE" ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
inherit version;
|
|
|
|
homepage = "http://www.namesys.com/";
|
|
|
|
description = "ReiserFS utilities";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|