commit
b718b66117
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/misc/scrub/default.nix
Normal file
26
pkgs/tools/misc/scrub/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "scrub";
|
||||
version = "2.6.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "chaos";
|
||||
repo = "scrub";
|
||||
rev = version;
|
||||
sha256 = "0ndcri2ddzqlsxvy1b607ajyd4dxpiagzx331yyi7hf3ijph129f";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake libtool ];
|
||||
|
||||
preConfigure = "./autogen.sh";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Disk overwrite utility";
|
||||
homepage = "https://github.com/chaos/scrub";
|
||||
changelog = "https://raw.githubusercontent.com/chaos/scrub/master/NEWS";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ j0hax ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -9570,6 +9570,8 @@ with pkgs;
|
|||
|
||||
screenkey = callPackage ../applications/video/screenkey { };
|
||||
|
||||
scrub = callPackage ../tools/misc/scrub { };
|
||||
|
||||
scfbuild = python3.pkgs.callPackage ../tools/misc/scfbuild { };
|
||||
|
||||
scriptaculous = callPackage ../development/libraries/scriptaculous { };
|
||||
|
|
Loading…
Reference in a new issue