lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert "Use consistent package naming for HEAD.nix files" for GHC and GHCjs.

This reverts commit 31b0e34d1dd1226de1492101e3aeea60292196d7. The version
numbers used in that commit were no improvement.

+3 -3
+2 -2
pkgs/development/compilers/ghc/head.nix
··· 12 12 13 13 commonBuildInputs = [ ghc perl autoconf automake happy alex python3 ]; 14 14 15 - version = "2017-01-06"; 15 + version = "8.1.20170106"; 16 16 rev = "b4f2afe70ddbd0576b4eba3f82ba1ddc52e9b3bd"; 17 17 18 18 commonPreConfigure = '' ··· 29 29 ''; 30 30 in stdenv.mkDerivation (rec { 31 31 inherit version rev; 32 - name = "ghc-unstable-${version}"; 32 + name = "ghc-${version}"; 33 33 34 34 src = fetchgit { 35 35 url = "git://git.haskell.org/ghc.git";
+1 -1
pkgs/development/compilers/ghcjs/head.nix
··· 1 1 { fetchgit, fetchFromGitHub, bootPkgs }: 2 2 3 3 bootPkgs.callPackage ./base.nix { 4 - version = "2017-03-23"; 4 + version = "0.2.020170323"; 5 5 6 6 inherit bootPkgs; 7 7