at 24.11-pre 22 lines 571 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 mainProgram = "wipe"; 17 homepage = "https://wipe.sourceforge.net/"; 18 license = licenses.gpl2Plus; 19 platforms = platforms.all; 20 maintainers = [ maintainers.abbradar ]; 21 }; 22}