crossguid: add updateScript

This commit is contained in:
Lily Foster 2022-10-24 07:44:16 -04:00
parent ac1f5b72a9
commit f3d2bbea40
No known key found for this signature in database
GPG key ID: 49340081E484C893

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, libuuid }:
{ lib, stdenv, fetchFromGitHub, cmake, libuuid, unstableGitUpdater }:
stdenv.mkDerivation rec {
pname = "crossguid";
@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
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;