Merge pull request #1867 from thoughtpolice/fixes

Some minor fixes for my packages - ktap, cb0cat, etc
This commit is contained in:
mornfall 2014-03-03 20:36:08 +01:00
commit 528b600ec6
4 changed files with 11 additions and 6 deletions

View File

@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "A tool for checking security bits on executables"; description = "A tool for checking security bits on executables";
homepage = "http://www.trapkit.de/tools/checksec.html";
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.bsd3; license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = [ stdenv.lib.maintainers.thoughtpolice ];

View File

@ -1,16 +1,19 @@
{ stdenv, fetchgit, kernel }: { stdenv, fetchgit, kernel, useFFI ? false }:
let
ffiArgs = stdenv.lib.optionalString useFFI "FFI=1";
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ktap-${version}"; name = "ktap-${version}";
version = "0.5-7ee59b19"; version = "0.5-e7a38ef0";
src = fetchgit { src = fetchgit {
url = "https://github.com/ktap/ktap.git"; url = "https://github.com/ktap/ktap.git";
rev = "7ee59b19d536fd3d3164ff0a0623faff827e5d97"; rev = "e7a38ef06bec9a651c9e8bdb3ad66a104210d475";
sha256 = "0a46836469d0afb088e72fd6310406a86c487d17bac40e390cec8bc869e7379c"; sha256 = "07acf20e1926d3afd89b13855154b8cc792c57261e7d3cae2da70cb08844f9c8";
}; };
buildPhase = '' buildPhase = ''
make FFI=1 KERNEL_SRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build make ${ffiArgs} KERNEL_SRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build
''; '';
installPhase = '' installPhase = ''

View File

@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "cryptographic tool based on the CBEAMr0 sponge function"; description = "cryptographic tool based on the CBEAMr0 sponge function";
homepage = "https://www.cblnk.com"; homepage = "https://www.cblnk.com";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.bsd3; license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
}; };