Replace fetchgit

This commit is contained in:
EEva 2022-03-21 16:31:15 +02:00
parent 523d2bd9d6
commit aafe172052
2 changed files with 9 additions and 7 deletions

View File

@ -17,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "reaper";
version = "6.46";
version = "6.47";
src = fetchurl {
url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_${stdenv.hostPlatform.qemuArch}.tar.xz";
hash = {
x86_64-linux = "sha256-cHjiO2hRK8gUaq2VfuE9GOtRJ0JyfH2rhdIbK+RxoEM=";
aarch64-linux = "sha256-x6z5+H7ASWiuNL0maNGK05VmJptHdFGRiFf6DgwlZDw=";
x86_64-linux = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
aarch64-linux = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
}.${stdenv.hostPlatform.system};
};

View File

@ -15,8 +15,9 @@ let
"systemd-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
pname = "systemd-syntax";
version = "git";
src = fetchgit {
url = "git://github.com/Matt-Deacalion/vim-systemd-syntax";
src = fetchFromGitHub {
owner = "Matt-Deacalion";
repo = "vim-systemd-syntax";
rev = "394a516f524e74ac8808ede1496b25d8b9824827";
sha256 = "0fqk5fxrdf8nazic244ia4bi75midmpj896vdkdmxnv563lnhkcy";
};
@ -25,8 +26,9 @@ let
"opencl-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
pname = "opencl-syntax";
version = "git";
src = fetchgit {
url = "git://github.com/petRUShka/vim-opencl";
src = fetchFromGitHub {
owner = "petRUShka";
repo = "vim-opencl";
rev = "7668b018fe9461c6b51e0b736ed84aa84d6bafce";
sha256 = "0z8qasymkkaa272bjxmkp4sgd8qr4ypcqxlyzxgh5imp3gmrc6n1";
};