stduuid: init at 1.2.2

This commit is contained in:
Shea Levy 2022-09-16 15:53:18 -04:00
parent 8bdb129b86
commit c29a6a6416
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, cmake, fetchFromGitHub, lib }: let
version = "1.2.2";
in stdenv.mkDerivation {
name = "stduuid-${version}";
src = fetchFromGitHub {
owner = "mariusbancila";
repo = "stduuid";
rev = "v${version}";
hash = "sha256-itx1OF1gmEEMy2tJlkN5dpF6o0dlesecuHYfpJdhf7c=";
};
nativeBuildInputs = [ cmake ];
meta = {
description = "A C++17 cross-platform implementation for UUIDs";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.shlevy ];
homepage = "https://github.com/mariusbancila/stduuid";
platforms = lib.platforms.all;
};
}

View File

@ -21857,6 +21857,8 @@ with pkgs;
stb = callPackage ../development/libraries/stb { };
stduuid = callPackage ../development/libraries/stduuid { };
stegsolve = callPackage ../tools/graphics/stegsolve { };
StormLib = callPackage ../development/libraries/StormLib { };