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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
717 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, check, subunit }:
2019-06-27 23:44:18 +00:00
stdenv.mkDerivation rec {
pname = "orcania";
2022-08-05 21:07:42 +00:00
version = "2.3.0";
2019-06-27 23:44:18 +00:00
src = fetchFromGitHub {
owner = "babelouest";
repo = pname;
rev = "v${version}";
2022-08-05 21:07:42 +00:00
sha256 = "sha256-QAq/6MGVj+iBHLElHuqokF1v3LU1TZ9hVVJE1s3y6f0=";
2019-06-27 23:44:18 +00:00
};
nativeBuildInputs = [ cmake ];
checkInputs = [ check subunit ];
cmakeFlags = [ "-DBUILD_ORCANIA_TESTING=on" ];
doCheck = true;
meta = with lib; {
2019-06-27 23:44:18 +00: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 ];
};
}