nixui: replace git://github.com with https://

This commit is contained in:
Sandro Jäckel 2022-03-28 12:18:17 +02:00
parent f3bda2f2c0
commit bea3dc3a4c
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
3 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ let
nixui = (import ./nixui.nix {
inherit pkgs;
inherit (stdenv.hostPlatform) system;
})."nixui-git://github.com/matejc/nixui.git#0.2.1";
})."nixui-git+https://github.com/matejc/nixui.git#0.2.1";
script = writeScript "nixui" ''
#! ${stdenv.shell}
export PATH="${nix}/bin:\$PATH"

View file

@ -70,12 +70,12 @@ let
};
in
{
"nixui-git://github.com/matejc/nixui.git#0.2.1" = nodeEnv.buildNodePackage {
"nixui-git+https://github.com/matejc/nixui.git#0.2.1" = nodeEnv.buildNodePackage {
name = "nixui";
packageName = "nixui";
version = "0.2.1";
src = fetchgit {
url = "git://github.com/matejc/nixui.git";
url = "https://github.com/matejc/nixui.git";
rev = "845a5f4a33f1d0c509c727c130d0792a5b450a38";
sha256 = "2a2b1dcd9201e306242688c6c86f520ac47ef5de841ae0d7ea6ae8ff2889c3ab";
};

View file

@ -1,3 +1,3 @@
[
{ "nixui": "git://github.com/matejc/nixui.git#0.2.1" }
{ "nixui": "git+https://github.com/matejc/nixui.git#0.2.1" }
]