libcsptr: init at 2.0.4
This commit is contained in:
parent
14a9ca27e6
commit
517c29935b
@ -97,6 +97,11 @@
|
|||||||
github = "FireyFly";
|
github = "FireyFly";
|
||||||
name = "Jonas Höglund";
|
name = "Jonas Höglund";
|
||||||
};
|
};
|
||||||
|
fragamus = {
|
||||||
|
email = "innovative.engineer@gmail.com";
|
||||||
|
github = "fragamus";
|
||||||
|
name = "Michael Gough";
|
||||||
|
};
|
||||||
Fresheyeball = {
|
Fresheyeball = {
|
||||||
email = "fresheyeball@gmail.com";
|
email = "fresheyeball@gmail.com";
|
||||||
github = "fresheyeball";
|
github = "fresheyeball";
|
||||||
|
23
pkgs/development/libraries/libcsptr/default.nix
Normal file
23
pkgs/development/libraries/libcsptr/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, git }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libcsptr-${version}";
|
||||||
|
version = "2.0.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Snaipe";
|
||||||
|
repo = "libcsptr";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0i1498h2i6zq3fn3zf3iw7glv6brn597165hnibgwccqa8sh3ich";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Smart pointer constructs for the (GNU) C programming language";
|
||||||
|
homepage = https://github.com/Snaipe/libcsptr;
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||||
|
maintainers = [ maintainers.fragamus ];
|
||||||
|
};
|
||||||
|
}
|
@ -3372,6 +3372,8 @@ with pkgs;
|
|||||||
|
|
||||||
libcpuid = callPackage ../tools/misc/libcpuid { };
|
libcpuid = callPackage ../tools/misc/libcpuid { };
|
||||||
|
|
||||||
|
libcsptr = callPackage ../development/libraries/libcsptr { };
|
||||||
|
|
||||||
libscrypt = callPackage ../development/libraries/libscrypt { };
|
libscrypt = callPackage ../development/libraries/libscrypt { };
|
||||||
|
|
||||||
libcloudproviders = callPackage ../development/libraries/libcloudproviders { };
|
libcloudproviders = callPackage ../development/libraries/libcloudproviders { };
|
||||||
|
Loading…
Reference in New Issue
Block a user