Update Git URLs

This commit is contained in:
Emery Hemingway 2019-09-01 15:27:43 +02:00
parent 95e3b6a62e
commit 7f8e7923a6
3 changed files with 12 additions and 15 deletions

View File

@ -1,7 +1,7 @@
{ fetchgit }:
fetchgit
{ url = "git://depot.h4ck.me/srv/git/dhall-genode";
{ url = "https://git.sr.ht/~ehmry/dhall-genode";
rev = "4b03fc71a4529cc35cef9dfe9d95ec431f8246e6";
sha256 = "0a2ff2d68yxvg2vwdbigakglixxbw063bays0mg9hkbd8570l3h3";
}

View File

@ -1,16 +1,13 @@
{ genodepkgs ? builtins.fetchGit ./.
, nixpkgs ? builtins.fetchGit
{ url = "git://depot.h4ck.me/srv/git/nixpkgs";
ref = "genode";
}
}:
{ genodepkgs ? builtins.fetchGit ./., nixpkgs ? builtins.fetchGit {
url = "https://github.com/ehmry/nixpkgs.git";
ref = "genode";
} }:
{
build.x86_64 =
let pkgs = import ./default.nix
{ inherit (nixpkgs);
system = { config = "x86_64-unknown-genode"; };
};
in
{ inherit (pkgs) upstream ports libretro; };
build.x86_64 = let
pkgs = import ./default.nix {
inherit nixpkgs;
system = { config = "x86_64-unknown-genode"; };
};
in { inherit (pkgs) upstream ports libretro; };
}

View File

@ -10,7 +10,7 @@ nixpkgs.stdenvNoCC.mkDerivation {
HOST_LIBC = toolchain.libc.dev;
src = nixpkgs.fetchgit
{ url = "git://depot.h4ck.me/srv/git/genode";
{ url = "https://git.sr.ht/~ehmry/genode";
rev = "edb117c13b0cde38ba66ffaaa19a798fbb6d044d";
sha256 = "0rkpsh07hdv4r5pgyw707zhv546h96c6h150cdw01hi54jq8c0dr";
fetchSubmodules = false;