lol

ceptre: switch to fetchFromGitHub

+6 -4
+6 -4
pkgs/development/interpreters/ceptre/default.nix
··· 1 - { lib, stdenv, fetchgit, mlton }: 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 - src = fetchgit { 8 - url = "https://github.com/chrisamaphone/interactive-lp"; 7 + src = fetchFromGitHub { 8 + owner = "chrisamaphone"; 9 + repo = "interactive-lp"; 9 10 rev = "e436fda2ccd44e9c9d226feced9d204311deacf5"; 10 - sha256 = "174pxfnw3qyn2w8qxmx45fa68iddf106mkfi0kcmyqxzsc9jprh8"; 11 + sha256 = "sha256-COYrE9O/Y1/ZBNHNakBwrUVklCuk144RF9bjwa3rl5w="; 12 + fetchSubmodules = true; 11 13 }; 12 14 13 15 nativeBuildInputs = [ mlton ];