nixpkgs/pkgs/tools/filesystems/reiserfsprogs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
703 B
Nix
Raw Normal View History

2023-06-21 13:44:12 +00:00
{ lib, stdenv, fetchurl, libuuid, autoreconfHook, e2fsprogs, acl }:
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";
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=";
};
2018-11-27 21:13:19 +00:00
nativeBuildInputs = [ autoreconfHook ];
2023-06-21 13:44:12 +00:00
buildInputs = [ libuuid e2fsprogs acl ];
env.NIX_CFLAGS_COMPILE = toString [ "-std=gnu90" "-D_GNU_SOURCE" ];
2015-06-27 22:34:35 +00:00
meta = {
2015-04-18 19:37:40 +00:00
inherit version;
homepage = "http://www.namesys.com/";
description = "ReiserFS utilities";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
};
}