mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
clevis: init at 12
This commit is contained in:
parent
38ae7d1c6f
commit
37f35dc779
27
pkgs/tools/security/clevis/default.nix
Normal file
27
pkgs/tools/security/clevis/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkgconfig, asciidoc
|
||||
, jansson, jose, cryptsetup, curl, libpwquality, luksmeta
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "clevis";
|
||||
version = "12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "latchset";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1dbyl3c21h841w9lrrq6gd5y6dhamr0z5ixd87jz86cn02lznp5m";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkgconfig asciidoc ];
|
||||
buildInputs = [ jansson jose cryptsetup curl libpwquality luksmeta ];
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
meta = {
|
||||
description = "Automated Encryption Framework";
|
||||
homepage = "https://github.com/latchset/clevis";
|
||||
maintainers = with lib.maintainers; [ fpletz ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
};
|
||||
}
|
@ -1431,6 +1431,10 @@ in
|
||||
|
||||
clasp = callPackage ../tools/misc/clasp { };
|
||||
|
||||
clevis = callPackage ../tools/security/clevis {
|
||||
asciidoc = asciidoc-full;
|
||||
};
|
||||
|
||||
cli53 = callPackage ../tools/admin/cli53 { };
|
||||
|
||||
cli-visualizer = callPackage ../applications/misc/cli-visualizer { };
|
||||
|
Loading…
Reference in New Issue
Block a user