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

24 lines
584 B
Nix
Raw Normal View History

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