2013-07-08 19:08:40 +00:00
|
|
|
{ stdenv, fetchurl, e2fsprogs }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.2.4";
|
|
|
|
name = "extundelete-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 00:09:34 +00:00
|
|
|
url = "mirror://sourceforge/extundelete/extundelete-0.2.4.tar.bz2";
|
2013-07-08 19:08:40 +00:00
|
|
|
sha256 = "1x0r7ylxlp9lbj3d7sqf6j2a222dwy2nfpff05jd6mkh4ihxvyd1";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ e2fsprogs ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Utility that can recover deleted files from an ext3 or ext4 partition";
|
2013-07-08 19:08:40 +00:00
|
|
|
homepage = http://extundelete.sourceforge.net/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2016-05-17 11:57:28 +00:00
|
|
|
maintainers = [ maintainers.domenkozar ];
|
2013-07-08 19:08:40 +00:00
|
|
|
};
|
|
|
|
}
|