37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchgit, autoreconfHook, pkgconfig, gettext, python3
|
|
, ncurses, swig, glib, utillinux, cryptsetup, nss, gpgme
|
|
}:
|
|
|
|
let
|
|
version = "0.3.11";
|
|
in stdenv.mkDerivation rec {
|
|
name = "volume_key-${version}";
|
|
|
|
src = fetchgit {
|
|
url = https://pagure.io/volume_key.git;
|
|
rev = "volume_key-${version}";
|
|
sha256 = "1sqdbcih1c39bjiv4mm1m7acc3lfh2i2hf2r9i7rk8adfzq8awma";
|
|
};
|
|
|
|
outputs = [ "out" "man" "dev" "py" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig gettext python3 ncurses swig ];
|
|
|
|
buildInputs = [ glib cryptsetup nss utillinux gpgme ];
|
|
|
|
makeFlags = [
|
|
"pyexecdir=$(py)/${python3.sitePackages}"
|
|
"pythondir=$(py)/${python3.sitePackages}"
|
|
];
|
|
|
|
doCheck = false; # fails 1 out of 1 tests, needs `certutil`
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library for manipulating storage volume encryption keys and storing them separately from volumes to handle forgotten passphrases, and the associated command-line tool";
|
|
homepage = https://pagure.io/volume_key/;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|