Merge pull request #105713 from fgaz/use-unstable-updater

This commit is contained in:
Sandro
2020-12-03 01:06:56 +01:00
committed by GitHub
6 changed files with 30 additions and 12 deletions
@@ -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;
};
}
@@ -25,4 +25,3 @@ stdenv.mkDerivation rec {
platforms = platforms.all;
};
}