Merge pull request #1867 from thoughtpolice/fixes
Some minor fixes for my packages - ktap, cb0cat, etc
This commit is contained in:
commit
528b600ec6
@ -117,7 +117,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
phases = "unpackPhase installPhase";
|
phases = "unpackPhase installPhase";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Spark cluster computing";
|
description = "Spark cluster computing";
|
||||||
homepage = "http://spark.incubator.apache.org";
|
homepage = "http://spark.incubator.apache.org";
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
@ -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 ];
|
||||||
|
@ -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 = ''
|
||||||
|
@ -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 ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user