scrub: init at 2.6.1

This commit is contained in:
Johannes Arnold 2022-02-11 22:05:08 +01:00
parent c5d24d096c
commit 5b5496f7f9
2 changed files with 28 additions and 0 deletions

View 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;
};
}

View file

@ -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 { };