reiserfsprogs 3.6.21 -> 3.6.24

This commit is contained in:
Tobias Geerinckx-Rice 2015-04-18 21:37:40 +02:00
parent 74d66a3df1
commit 3a627a7fb0

@ -1,22 +1,18 @@
{ stdenv, fetchurl, libuuid }:
let version = "3.6.24"; in
stdenv.mkDerivation rec {
name = "reiserfsprogs-3.6.21";
name = "reiserfsprogs-${version}";
src = fetchurl {
url = "http://ftp.be.debian.org/pub/linux/utils/fs/reiserfs/${name}.tar.bz2";
sha256 = "19mqzhh6jsf2gh8zr5scqi9pyk1fwivrxncd11rqnp2148c58jam";
url = "https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${version}/${name}.tar.xz";
sha256 = "0q07df9wxxih8714a3mdp61h5n347l7j2a0l351acs3xapzgwi3y";
};
buildInputs = [ libuuid ];
postInstall =
''
ln -s reiserfsck $out/sbin/fsck.reiserfs
ln -s mkreiserfs $out/sbin/mkfs.reiserfs
'';
meta = {
inherit version;
homepage = http://www.namesys.com/;
description = "ReiserFS utilities";
license = stdenv.lib.licenses.gpl2;