lethe: init at 0.5.1

This commit is contained in:
Fabian Affolter 2021-06-26 23:26:49 +02:00
parent 4d420f27eb
commit ddc83acfa0
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "lethe";
version = "0.5.1";
src = fetchFromGitHub {
owner = "kostassoid";
repo = pname;
rev = "v${version}";
sha256 = "173ms4fd09iclm4v5zkmvc60l6iyyb5lzxc6dxd6q21zy0pvs35g";
};
cargoSha256 = "11l7wxadinidf0bsxv14j1kv8gdhq1d6ffnb76n54igxid8gza14";
buildInputs = lib.optional stdenv.isDarwin Security;
meta = with lib; {
description = "Tool to wipe drives in a secure way";
homepage = "https://github.com/kostassoid/lethe";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6576,6 +6576,10 @@ in
leela = callPackage ../tools/graphics/leela { };
lethe = callPackage ../tools/security/lethe {
inherit (darwin.apple_sdk.frameworks) Security;
};
lftp = callPackage ../tools/networking/lftp { };
libck = callPackage ../development/libraries/libck { };