biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / lethe / default.nix
blob21875006f4fcbf3e5caba99774f2a11bcdb69f1f
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 , Security
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "lethe";
10   version = "0.8.2";
12   src = fetchFromGitHub {
13     owner = "kostassoid";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-y2D/80pnpYpTl+q9COTQkvtj9lzBlOWuMcnn5WFnX8E=";
17   };
19   cargoHash = "sha256-SFNNpbHZdDJvH95f+VWyVKnQp3OJwQmCOqHtLAhhkOk=";
21   buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;
23   meta = with lib; {
24     description = "Tool to wipe drives in a secure way";
25     homepage = "https://github.com/kostassoid/lethe";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ fab ];
28     mainProgram = "lethe";
29   };