multi-ghc-travis: update to latest git version

This commit is contained in:
Peter Simons 2018-04-09 16:45:11 +02:00
parent b39f539897
commit 2206adb4cd

View File

@ -1,17 +1,16 @@
{ mkDerivation, base, bytestring, Cabal, containers, deepseq, Diff { mkDerivation, ansi-terminal, base, bytestring, Cabal, containers
, directory, filepath, ShellCheck, stdenv, tasty, tasty-golden , deepseq, Diff, directory, filepath, ShellCheck, stdenv, tasty
, transformers, fetchFromGitHub , tasty-golden, transformers, fetchFromGitHub
}: }:
mkDerivation { mkDerivation {
pname = "make-travis-yml"; pname = "haskell-ci";
version = "0"; version = "0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "haskell-CI"; owner = "haskell-CI";
repo = "haskell-ci"; repo = "haskell-ci";
rev = "7ca5d751c35c6dc43392397b4641c4611ed55121"; rev = "848c2fe5c7d0d95b20312e86b360d5db8c95db75";
sha256 = "04f9jcxqv1mn0rw31x23ns6xdhgqjv55blsksadwr25qn2521zxb"; sha256 = "1n4y6j564sxxry19xs4x0ds7fg8h1q0svw9q45477czx82qzavym";
}; };
jailbreak = true;
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
libraryHaskellDepends = [ libraryHaskellDepends = [
@ -20,8 +19,8 @@ mkDerivation {
]; ];
executableHaskellDepends = [ base ]; executableHaskellDepends = [ base ];
testHaskellDepends = [ testHaskellDepends = [
base bytestring Diff directory filepath tasty tasty-golden ansi-terminal base bytestring Diff directory filepath tasty
transformers tasty-golden transformers
]; ];
homepage = "https://github.com/haskell-CI/haskell-ci"; homepage = "https://github.com/haskell-CI/haskell-ci";
description = "Script generator for Travis-CI"; description = "Script generator for Travis-CI";