nixpkgs/pkgs/development/libraries/orcania/default.nix

33 lines
890 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, check, subunit }:
2019-06-28 01:44:18 +02:00
stdenv.mkDerivation rec {
pname = "orcania";
2021-03-13 11:24:21 +01:00
version = "2.2.0";
2019-06-28 01:44:18 +02:00
src = fetchFromGitHub {
owner = "babelouest";
repo = pname;
rev = "v${version}";
2021-03-13 11:24:21 +01:00
sha256 = "sha256-tArXiXmoWHd42IGBZKtc4QJIBy3USPlSeW+Dv5xl1EU=";
2019-06-28 01:44:18 +02:00
};
nativeBuildInputs = [ cmake ];
checkInputs = [ check subunit ];
cmakeFlags = [ "-DBUILD_ORCANIA_TESTING=on" ];
doCheck = true;
preCheck = ''
export LD_LIBRARY_PATH="$(pwd)''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
export DYLD_FALLBACK_LIBRARY_PATH="$(pwd):$DYLD_FALLBACK_LIBRARY_PATH"
'';
meta = with lib; {
2019-06-28 01:44:18 +02:00
description = "Potluck with different functions for different purposes that can be shared among C programs";
homepage = "https://github.com/babelouest/orcania";
license = licenses.lgpl21;
maintainers = with maintainers; [ johnazoidberg ];
};
}