3
0
Fork 0
forked from mirrors/nixpkgs

volume_key: init at 0.3.9

This commit is contained in:
Jan Tojnar 2018-02-25 14:51:00 +01:00 committed by Florian Klink
parent 6d4069964f
commit f78ca4715b
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ stdenv, fetchgit, fetchpatch, autoreconfHook, pkgconfig, gettext, python2
, swig, glib, utillinux, cryptsetup, nss, gpgme
}:
let
version = "0.3.10";
in stdenv.mkDerivation rec {
name = "volume_key-${version}";
src = fetchgit {
url = https://pagure.io/volume_key.git;
rev = "ece1ce305234da454e330905c615ec474d9781c5";
sha256 = "16qdi5s6ycsh0iyc362gly7ggrwamky8i0zgbd4ajp3ymk9vqdva";
};
outputs = [ "out" "man" "dev" ];
nativeBuildInputs = [ autoreconfHook pkgconfig gettext python2 swig ];
buildInputs = [ glib cryptsetup nss utillinux gpgme ];
patches = [
# Use pkg-config for locating Python.h
# https://pagure.io/volume_key/pull-request/12
(fetchpatch {
url = https://pagure.io/fork/cathay4t/volume_key/c/8eda66d3b734ea335e37cf9d7d173b9e8ebe2fd9.patch;
sha256 = "01lr1zijk0imkk681zynm4w5ad3y6c9vdrmrzaib7w7ima75iczr";
})
];
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;
};
}

View file

@ -5512,6 +5512,8 @@ with pkgs;
vobsub2srt = callPackage ../tools/cd-dvd/vobsub2srt { };
volume_key = callPackage ../development/libraries/volume-key { };
vorbisgain = callPackage ../tools/misc/vorbisgain { };
vpnc = callPackage ../tools/networking/vpnc { };