3
0
Fork 0
forked from mirrors/nixpkgs
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 00:44:18 +01:00
stdenv.mkDerivation rec {
pname = "orcania";
2021-08-15 18:13:49 +01:00
version = "2.2.1";
2019-06-28 00:44:18 +01:00
src = fetchFromGitHub {
owner = "babelouest";
repo = pname;
rev = "v${version}";
2021-08-15 18:13:49 +01:00
sha256 = "sha256-6Libn+S5c7sCmKGq8KojiUhI18zO37rgiiVwQxP3p4o=";
2019-06-28 00:44:18 +01: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 00:44:18 +01: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 ];
};
}