about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/orcania/default.nix
blob: b1a52f8fca96422e5a4eed2b7b3e76f81dfc698e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
  pname = "orcania";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "babelouest";
    repo = pname;
    rev = "v${version}";
    sha256 = "11ihbfm7qbqf55wdi7azqx75ggd3l0n8ybyq2ikidffvmg13l4g9";
  };

  nativeBuildInputs = [ cmake ];

  meta = with stdenv.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 ];
  };
}