at v206 21 lines 540 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "wipe-${version}"; 5 version = "2.3.1"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/wipe/${version}/${name}.tar.bz2"; 9 sha256 = "180snqvh6k6il6prb19fncflf2jcvkihlb4w84sbndcv1wvicfa6"; 10 }; 11 12 patches = [ ./fix-install.patch ]; 13 14 meta = with stdenv.lib; { 15 description = "Secure file wiping utility"; 16 homepage = http://wipe.sourceforge.net/; 17 license = licenses.gpl2; 18 platforms = platforms.linux; 19 maintainers = [ maintainers.abbradar ]; 20 }; 21}