crossguid: add updateScript

This commit is contained in:
Lily Foster
2023-02-17 13:30:26 -05:00
parent ac1f5b72a9
commit f3d2bbea40
@@ -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;