nixpkgs/pkgs/tools/backup/stenc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
617 B
Nix
Raw Normal View History

2020-11-26 09:07:19 +00:00
{ lib
, stdenv
, fetchFromGitHub
, gitUpdater
2020-11-26 09:07:19 +00:00
, autoreconfHook
}:
2019-10-01 07:02:32 +00:00
stdenv.mkDerivation rec {
pname = "stenc";
2022-08-19 18:55:49 +00:00
version = "1.1.1";
2019-10-01 07:02:32 +00:00
src = fetchFromGitHub {
owner = "scsitape";
repo = "stenc";
rev = version;
2022-08-19 18:55:49 +00:00
sha256 = "GcCRVkv+1mREq3MhMRn5fICthwI4WRQJSP6InuzxP1Q=";
2020-11-26 09:07:19 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
passthru.updateScript = gitUpdater { };
2019-10-01 07:02:32 +00:00
meta = {
description = "SCSI Tape Encryption Manager";
homepage = "https://github.com/scsitape/stenc";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ woffs ];
platforms = lib.platforms.linux;
2019-10-01 07:02:32 +00:00
};
}