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
-
{ 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";
0
9
rev = "f99b8c5293628cfeaeb792019072e3a96841104f";
0
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;
0
13
};
14
15
nativeBuildInputs = [ autoreconfHook ];