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

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

26 lines
709 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv, fetchurl, libuuid, autoreconfHook }:
stdenv.mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "reiserfsprogs";
2021-07-17 19:56:23 +02:00
version = "3.6.24";
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";
};
2018-11-27 22:13:19 +01:00
patches = [ ./reiserfsprogs-ar-fix.patch ];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libuuid ];
NIX_CFLAGS_COMPILE = [ "-std=gnu90" "-D_GNU_SOURCE" ];
2015-06-28 00:34:35 +02:00
meta = {
2015-04-18 21:37:40 +02:00
inherit version;
homepage = "http://www.namesys.com/";
description = "ReiserFS utilities";
2021-01-15 10:19:50 +01:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
};
}