tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ceptre: switch to fetchFromGitHub
Felix Buehler
4 years ago
9feb246f
28ff2255
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
ceptre
default.nix
+6
-4
pkgs/development/interpreters/ceptre/default.nix
reviewed
···
1
1
-
{ lib, stdenv, fetchgit, mlton }:
1
1
+
{ lib, stdenv, fetchFromGitHub, mlton }:
2
2
3
3
stdenv.mkDerivation {
4
4
pname = "ceptre";
5
5
version = "unstable-2016-11-27";
6
6
7
7
-
src = fetchgit {
8
8
-
url = "https://github.com/chrisamaphone/interactive-lp";
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "chrisamaphone";
9
9
+
repo = "interactive-lp";
9
10
rev = "e436fda2ccd44e9c9d226feced9d204311deacf5";
10
10
-
sha256 = "174pxfnw3qyn2w8qxmx45fa68iddf106mkfi0kcmyqxzsc9jprh8";
11
11
+
sha256 = "sha256-COYrE9O/Y1/ZBNHNakBwrUVklCuk144RF9bjwa3rl5w=";
12
12
+
fetchSubmodules = true;
11
13
};
12
14
13
15
nativeBuildInputs = [ mlton ];