summary refs log tree commit diff
path: root/pkgs/tools/filesystems/reiserfsprogs/default.nix
blob: a89ea0657500ba2d6e0b557f73da7938f3d16a0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl, libuuid, autoreconfHook }:

let version = "3.6.24"; in
stdenv.mkDerivation rec {
  pname = "reiserfsprogs";
  inherit version;

  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";

  meta = {
    inherit version;
    homepage = http://www.namesys.com/;
    description = "ReiserFS utilities";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
  };
}