mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
bcd7045998
Since the setting DCMAKE_SKIP_BUILD_RPATH was disabled, we can now run the checkPhase of cmake derivations without having to tweak the LD_LIBRARY_PATH anymore.
28 lines
717 B
Nix
28 lines
717 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, check, subunit }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "orcania";
|
|
version = "2.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "babelouest";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-lrc4VEqmCp/P/h0+5/ix6tx4pjfkLy9BLBZtKYLlyGI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
checkInputs = [ check subunit ];
|
|
|
|
cmakeFlags = [ "-DBUILD_ORCANIA_TESTING=on" ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
};
|
|
}
|