tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
crossguid: add updateScript
Lily Foster
3 years ago
f3d2bbea
ac1f5b72
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
crossguid
default.nix
+3
-1
pkgs/development/libraries/crossguid/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, cmake, libuuid }:
1
1
+
{ lib, stdenv, fetchFromGitHub, cmake, libuuid, unstableGitUpdater }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "crossguid";
···
13
13
14
14
nativeBuildInputs = [ cmake ];
15
15
buildInputs = lib.optional stdenv.isLinux libuuid;
16
16
+
17
17
+
passthru.updateScript = unstableGitUpdater { };
16
18
17
19
meta = with lib; {
18
20
description = "Lightweight cross platform C++ GUID/UUID library";