arguments: init at 2015-11-30
This commit is contained in:
parent
d094f52112
commit
6972e366be
32
pkgs/development/libraries/arguments/default.nix
Normal file
32
pkgs/development/libraries/arguments/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, libminc, bicpl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "arguments";
|
||||||
|
name = "${pname}-2015-11-30";
|
||||||
|
|
||||||
|
owner = "BIC-MNI";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
inherit owner;
|
||||||
|
repo = pname;
|
||||||
|
rev = "b3aad97f6b6892cb8733455d0d448649a48fa108";
|
||||||
|
sha256 = "1ar8lm1w1jflz3vdmjr5c4x6y7rscvrj78b8gmrv79y95qrgzv6s";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
buildInputs = [ ];
|
||||||
|
|
||||||
|
#cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib" "-DBICPL_DIR=${bicpl}/lib" "-DBUILD_TESTING=FALSE" ];
|
||||||
|
|
||||||
|
checkPhase = "ctest --output-on-failure";
|
||||||
|
doCheck = false;
|
||||||
|
# internal_volume_io.h: No such file or directory
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/${owner}/${pname}";
|
||||||
|
description = "Library for argument handling for MINC programs";
|
||||||
|
maintainers = with maintainers; [ bcdarwin ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.free;
|
||||||
|
};
|
||||||
|
}
|
@ -517,6 +517,8 @@ with pkgs;
|
|||||||
|
|
||||||
apitrace = libsForQt5.callPackage ../applications/graphics/apitrace {};
|
apitrace = libsForQt5.callPackage ../applications/graphics/apitrace {};
|
||||||
|
|
||||||
|
arguments = callPackage ../development/libraries/arguments { };
|
||||||
|
|
||||||
argus = callPackage ../tools/networking/argus {};
|
argus = callPackage ../tools/networking/argus {};
|
||||||
|
|
||||||
argus-clients = callPackage ../tools/networking/argus-clients {};
|
argus-clients = callPackage ../tools/networking/argus-clients {};
|
||||||
|
Loading…
Reference in New Issue
Block a user