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