tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
scsh: switch to fetchFromGitHub
Felix Buehler
3 years ago
35c43df7
ce035a2d
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
scsh
default.nix
+5
-4
pkgs/development/interpreters/scsh/default.nix
···
1
1
-
{ lib, stdenv, fetchgit, autoreconfHook, scheme48 }:
1
1
+
{ lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48 }:
2
2
3
3
stdenv.mkDerivation {
4
4
pname = "scsh";
5
5
version = "0.7pre";
6
6
7
7
-
src = fetchgit {
8
8
-
url = "https://github.com/scheme/scsh.git";
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "scheme";
9
9
+
repo = "scsh";
9
10
rev = "f99b8c5293628cfeaeb792019072e3a96841104f";
11
11
+
sha256 = "sha256-vcVtqoUhozdJq1beUN8/rcI2qOJYUN+0CPSiDWGCIjI=";
10
12
fetchSubmodules = true;
11
11
-
sha256 = "0ci2h9hhv8pl12sdyl2qwal3dhmd7zgm1pjnmd4kg8r1hnm6vidx";
12
13
};
13
14
14
15
nativeBuildInputs = [ autoreconfHook ];