mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
27 lines
765 B
Nix
27 lines
765 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, libuuid, unstableGitUpdater }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "crossguid";
|
|
version = "unstable-2019-05-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "graeme-hill";
|
|
repo = pname;
|
|
rev = "ca1bf4b810e2d188d04cb6286f957008ee1b7681";
|
|
hash = "sha256-37tKPDo4lukl/aaDWWSQYfsBNEnDjE7t6OnEZjBhcvQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = lib.optional stdenv.isLinux libuuid;
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight cross platform C++ GUID/UUID library";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/graeme-hill/crossguid";
|
|
maintainers = with maintainers; [ lilyinstarlight ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|