summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorMateusz Kowalczyk <mk440@bath.ac.uk>2014-10-23 11:50:12 +0100
committerMateusz Kowalczyk <mk440@bath.ac.uk>2014-10-23 11:50:12 +0100
commit342e7748e2b21e8ab1b3d46d1584b90b7d3cdb03 (patch)
tree717bcf7e857d90ff519542d70a2db154c090c1df /pkgs/tools/security
parentf5c9daf99efcd32256372cbf43572578bcee7cf5 (diff)
parent0f2af778b74866d7251df14d5a0ce72e9c588bcc (diff)
downloadnixlib-342e7748e2b21e8ab1b3d46d1584b90b7d3cdb03.tar
nixlib-342e7748e2b21e8ab1b3d46d1584b90b7d3cdb03.tar.gz
nixlib-342e7748e2b21e8ab1b3d46d1584b90b7d3cdb03.tar.bz2
nixlib-342e7748e2b21e8ab1b3d46d1584b90b7d3cdb03.tar.lz
nixlib-342e7748e2b21e8ab1b3d46d1584b90b7d3cdb03.tar.xz
nixlib-342e7748e2b21e8ab1b3d46d1584b90b7d3cdb03.tar.zst
nixlib-342e7748e2b21e8ab1b3d46d1584b90b7d3cdb03.zip
Merge pull request #4624 from abbradar/wipe
wipe: add package
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/wipe/default.nix21
-rw-r--r--pkgs/tools/security/wipe/fix-install.patch18
2 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/tools/security/wipe/default.nix b/pkgs/tools/security/wipe/default.nix
new file mode 100644
index 000000000000..a7c337dc1222
--- /dev/null
+++ b/pkgs/tools/security/wipe/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "wipe-${version}";
+  version = "2.3.1";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/wipe/${version}/${name}.tar.bz2";
+    sha256 = "180snqvh6k6il6prb19fncflf2jcvkihlb4w84sbndcv1wvicfa6";
+  };
+
+  patches = [ ./fix-install.patch ];
+
+  meta = with stdenv.lib; {
+    description = "Secure file wiping utility";
+    homepage    = http://wipe.sourceforge.net/;
+    license     = licenses.gpl2;
+    platforms   = platforms.linux;
+    maintainers = [ maintainers.abbradar ];
+  };
+}
diff --git a/pkgs/tools/security/wipe/fix-install.patch b/pkgs/tools/security/wipe/fix-install.patch
new file mode 100644
index 000000000000..2df3a1eec6a0
--- /dev/null
+++ b/pkgs/tools/security/wipe/fix-install.patch
@@ -0,0 +1,18 @@
+diff -ru3 wipe-2.3.1/Makefile.in wipe-2.3.1-new/Makefile.in
+--- wipe-2.3.1/Makefile.in	2009-11-02 00:11:30.000000000 +0300
++++ wipe-2.3.1-new/Makefile.in	2014-10-18 02:51:10.088966232 +0400
+@@ -60,12 +60,12 @@
+ 	$(INSTALL_BIN) -d $(bindir)
+ 	$(INSTALL_BIN) -s $(BIN_OUT) $(bindir)
+ 	$(INSTALL) -d $(mandir)/man1
+-	$(INSTALL) -o root -m 0644 wipe.1 $(mandir)/man1/
++	$(INSTALL) -m 0644 wipe.1 $(mandir)/man1/
+ 	rm -rf $(datadir)/doc/wipe*
+ 	$(INSTALL) -d $(datadir)/doc/wipe
+ 
+ 	for file in $(DOCS); do \
+-		$(INSTALL) -o root -m 0644 $$file $(datadir)/doc/wipe/; \
++		$(INSTALL) -m 0644 $$file $(datadir)/doc/wipe/; \
+ 	done
+ 
+ install_home: $(BIN_OUT)