2021-01-21 20:00:13 +03:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2018-07-12 19:03:05 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "libcsptr";
|
2018-07-12 19:03:05 +03:00
|
|
|
version = "2.0.4";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Snaipe";
|
|
|
|
repo = "libcsptr";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0i1498h2i6zq3fn3zf3iw7glv6brn597165hnibgwccqa8sh3ich";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-21 20:00:13 +03:00
|
|
|
meta = with lib; {
|
2018-07-12 19:03:05 +03:00
|
|
|
description = "Smart pointer constructs for the (GNU) C programming language";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://github.com/Snaipe/libcsptr";
|
2018-07-12 19:03:05 +03:00
|
|
|
license = licenses.mit;
|
2021-03-11 21:03:44 +03:00
|
|
|
platforms = platforms.all;
|
2018-07-12 19:03:05 +03:00
|
|
|
maintainers = [ maintainers.fragamus ];
|
|
|
|
};
|
|
|
|
}
|