2023-06-21 13:44:12 +00:00
|
|
|
{ lib, stdenv, fetchurl, libuuid, autoreconfHook, e2fsprogs, acl }:
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2010-07-07 14:23:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "reiserfsprogs";
|
2023-06-21 13:44:12 +00:00
|
|
|
version = "3.6.27";
|
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";
|
2023-06-21 13:44:12 +00:00
|
|
|
hash = "sha256-DpW2f6d0ajwtWRRem5wv60pr5ShT6DtJexgurlCOYuM=";
|
2008-02-04 14:37:15 +00:00
|
|
|
};
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2018-11-27 21:13:19 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2023-06-21 13:44:12 +00:00
|
|
|
buildInputs = [ libuuid e2fsprogs acl ];
|
2010-07-07 14:23:30 +00:00
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-std=gnu90" "-D_GNU_SOURCE" ];
|
2015-06-27 22:34:35 +00:00
|
|
|
|
2008-02-04 14:37:15 +00:00
|
|
|
meta = {
|
2015-04-18 19:37:40 +00:00
|
|
|
inherit version;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.namesys.com/";
|
2010-07-07 14:23:30 +00:00
|
|
|
description = "ReiserFS utilities";
|
2021-01-15 09:19:50 +00: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
|
|
|
}
|