orcania: init at 2.0.0

This commit is contained in:
Daniel Schaefer
2019-06-28 01:44:18 +02:00
parent 54cbf55543
commit 7fa534a4e1
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,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 ];
};
}