scsh: switch to fetchFromGitHub

+5 -4
+5 -4
pkgs/development/interpreters/scsh/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, scheme48 }: 2 3 stdenv.mkDerivation { 4 pname = "scsh"; 5 version = "0.7pre"; 6 7 - src = fetchgit { 8 - url = "https://github.com/scheme/scsh.git"; 9 rev = "f99b8c5293628cfeaeb792019072e3a96841104f"; 10 fetchSubmodules = true; 11 - sha256 = "0ci2h9hhv8pl12sdyl2qwal3dhmd7zgm1pjnmd4kg8r1hnm6vidx"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ];
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48 }: 2 3 stdenv.mkDerivation { 4 pname = "scsh"; 5 version = "0.7pre"; 6 7 + src = fetchFromGitHub { 8 + owner = "scheme"; 9 + repo = "scsh"; 10 rev = "f99b8c5293628cfeaeb792019072e3a96841104f"; 11 + sha256 = "sha256-vcVtqoUhozdJq1beUN8/rcI2qOJYUN+0CPSiDWGCIjI="; 12 fetchSubmodules = true; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook ];