lobster: use unstableGitUpdater

This commit is contained in:
Francesco Gazzetta 2020-12-02 17:23:05 +01:00
parent 86e91a15f3
commit 0c6492b9e4

View file

@ -1,5 +1,6 @@
{ stdenv
, fetchFromGitHub
, unstableGitUpdater
, cmake
, callPackage
@ -46,8 +47,9 @@ stdenv.mkDerivation rec {
preConfigure = "cd dev";
enableParallelBuilding = true;
passthru.tests = {
can-run-hello-world = callPackage ./test-can-run-hello-world.nix {};
passthru = {
tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix {};
updateScript = unstableGitUpdater { };
};
meta = with stdenv.lib; {
@ -63,4 +65,3 @@ stdenv.mkDerivation rec {
platforms = platforms.all;
};
}