tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
multi-ghc-travis: update to latest git version
Peter Simons
8 years ago
fbb5b2ef
bcf9af56
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
haskell
multi-ghc-travis
default.nix
+4
-4
pkgs/development/tools/haskell/multi-ghc-travis/default.nix
···
2
3
stdenv.mkDerivation rec {
4
name = "multi-ghc-travis-${version}";
5
-
version = "git-2017-05-18";
6
7
buildInputs = [ ghc ];
8
9
src = fetchFromGitHub {
10
owner = "hvr";
11
repo = "multi-ghc-travis";
12
-
rev = "3e1b3847583020f0e83c97fcf4bcfb7c90b78259";
13
-
sha256 = "0hnwp9gsv2rnkxqiw4cg1vdi7wccajx0i9ryhw4lfr8nhkizbsww";
14
};
15
16
installPhase = ''
···
23
description = "Generate .travis.yml for multiple ghc versions";
24
homepage = "https://github.com/hvr/multi-ghc-travis";
25
license = licenses.bsd3;
26
-
platforms = platforms.all;
27
maintainers = with maintainers; [ jb55 ];
28
};
29
}
···
2
3
stdenv.mkDerivation rec {
4
name = "multi-ghc-travis-${version}";
5
+
version = "git-2017-05-24";
6
7
buildInputs = [ ghc ];
8
9
src = fetchFromGitHub {
10
owner = "hvr";
11
repo = "multi-ghc-travis";
12
+
rev = "c1dcbcbcd3eadcc63adeac65d63497885b422a44";
13
+
sha256 = "12xss8wgsqs2fghrfl4h6g5wli6wn274zmdsq5zdcib2m7da5yw2";
14
};
15
16
installPhase = ''
···
23
description = "Generate .travis.yml for multiple ghc versions";
24
homepage = "https://github.com/hvr/multi-ghc-travis";
25
license = licenses.bsd3;
26
+
platforms = ghc.meta.platforms;
27
maintainers = with maintainers; [ jb55 ];
28
};
29
}