depot/third_party/nixpkgs/pkgs/development/libraries/stduuid/default.nix
Default email b41113241d Project import generated by Copybara.
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
2022-09-22 14:36:57 +02:00

22 lines
590 B
Nix

{ 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;
};
}