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

24 lines
595 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libuuid }:
2015-04-18 19:37:40 +00:00
let version = "3.6.24"; in
stdenv.mkDerivation rec {
2015-04-18 19:37:40 +00:00
name = "reiserfsprogs-${version}";
src = fetchurl {
2015-04-18 19:37:40 +00:00
url = "https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${version}/${name}.tar.xz";
sha256 = "0q07df9wxxih8714a3mdp61h5n347l7j2a0l351acs3xapzgwi3y";
};
buildInputs = [ libuuid ];
2015-06-27 22:34:35 +00:00
NIX_CFLAGS_COMPILE = "-std=gnu90";
meta = {
2015-04-18 19:37:40 +00:00
inherit version;
homepage = http://www.namesys.com/;
description = "ReiserFS utilities";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}