summary refs log tree commit diff
path: root/pkgs/tools/filesystems/reiserfsprogs
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-04-18 21:37:40 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-04-19 02:13:30 +0200
commit3a627a7fb09d5d7a82b4a3af5c1e3d2bface03fe (patch)
tree7054da9ef687da7eadc01ab7de9473681e4bf652 /pkgs/tools/filesystems/reiserfsprogs
parent74d66a3df14c32b1c22be90a0db731f2b672b825 (diff)
downloadnixpkgs-3a627a7fb09d5d7a82b4a3af5c1e3d2bface03fe.tar
nixpkgs-3a627a7fb09d5d7a82b4a3af5c1e3d2bface03fe.tar.gz
nixpkgs-3a627a7fb09d5d7a82b4a3af5c1e3d2bface03fe.tar.bz2
nixpkgs-3a627a7fb09d5d7a82b4a3af5c1e3d2bface03fe.tar.lz
nixpkgs-3a627a7fb09d5d7a82b4a3af5c1e3d2bface03fe.tar.xz
nixpkgs-3a627a7fb09d5d7a82b4a3af5c1e3d2bface03fe.tar.zst
nixpkgs-3a627a7fb09d5d7a82b4a3af5c1e3d2bface03fe.zip
reiserfsprogs 3.6.21 -> 3.6.24
Diffstat (limited to 'pkgs/tools/filesystems/reiserfsprogs')
-rw-r--r--pkgs/tools/filesystems/reiserfsprogs/default.nix14
1 files changed, 5 insertions, 9 deletions
diff --git a/pkgs/tools/filesystems/reiserfsprogs/default.nix b/pkgs/tools/filesystems/reiserfsprogs/default.nix
index 0c5ec063b1a..899f9463951 100644
--- a/pkgs/tools/filesystems/reiserfsprogs/default.nix
+++ b/pkgs/tools/filesystems/reiserfsprogs/default.nix
@@ -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;