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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
765 B
Nix
Raw Normal View History

2022-10-24 11:44:16 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, libuuid, unstableGitUpdater }:
2022-07-28 20:13:42 +00:00
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;
2022-10-24 11:44:16 +00:00
passthru.updateScript = unstableGitUpdater { };
2022-07-28 20:13:42 +00:00
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;
};
}