ceptre: switch to fetchFromGitHub

This commit is contained in:
Felix Buehler 2022-03-15 11:20:25 +01:00
parent 28ff2255a4
commit 9feb246fb8

View file

@ -1,13 +1,15 @@
{ lib, stdenv, fetchgit, mlton }: { lib, stdenv, fetchFromGitHub, mlton }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "ceptre"; pname = "ceptre";
version = "unstable-2016-11-27"; version = "unstable-2016-11-27";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/chrisamaphone/interactive-lp"; owner = "chrisamaphone";
repo = "interactive-lp";
rev = "e436fda2ccd44e9c9d226feced9d204311deacf5"; rev = "e436fda2ccd44e9c9d226feced9d204311deacf5";
sha256 = "174pxfnw3qyn2w8qxmx45fa68iddf106mkfi0kcmyqxzsc9jprh8"; sha256 = "sha256-COYrE9O/Y1/ZBNHNakBwrUVklCuk144RF9bjwa3rl5w=";
fetchSubmodules = true;
}; };
nativeBuildInputs = [ mlton ]; nativeBuildInputs = [ mlton ];