ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / sh / shellclear / package.nix
blob3ab52fda2a70dc9c23b17811b96ff1c6cd9ef531
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "shellclear";
8   version = "0.4.8";
10   src = fetchFromGitHub {
11     owner = "rusty-ferris-club";
12     repo = "shellclear";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-/0pqegVxrqqxaQ2JiUfkkFK9hp+Vuq7eTap052HEcJs=";
15   };
17   cargoHash = "sha256-vPd1cFfoSkOnXH3zKQUB0zWDzEtao50AUrUzhpZIkgI=";
19   buildAndTestSubdir = "shellclear";
21   meta = with lib; {
22     description = "Secure shell history commands by finding sensitive data";
23     homepage = "https://github.com/rusty-ferris-club/shellclear";
24     changelog = "https://github.com/rusty-ferris-club/shellclear/releases/tag/v${version}";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ fab ];
27   };