mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
ghc: versions prior to 7.4.x currently don't work on Darwin
db4cb021c0 (commitcomment-10320216)
This commit is contained in:
parent
a6f3b54fd0
commit
93bd02a6aa
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = {
|
meta = {
|
||||||
homepage = "http://haskell.org/ghc";
|
homepage = "http://haskell.org/ghc";
|
||||||
description = "The Glasgow Haskell Compiler";
|
description = "The Glasgow Haskell Compiler";
|
||||||
inherit (ghc.meta) license platforms;
|
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
|
||||||
|
inherit (ghc.meta) license;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "http://haskell.org/ghc";
|
homepage = "http://haskell.org/ghc";
|
||||||
description = "The Glasgow Haskell Compiler";
|
description = "The Glasgow Haskell Compiler";
|
||||||
maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ];
|
maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ];
|
||||||
inherit (ghc.meta) license platforms;
|
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
|
||||||
|
inherit (ghc.meta) license;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -45,13 +45,13 @@ stdenv.mkDerivation rec {
|
|||||||
meta = {
|
meta = {
|
||||||
homepage = "http://haskell.org/ghc";
|
homepage = "http://haskell.org/ghc";
|
||||||
description = "The Glasgow Haskell Compiler";
|
description = "The Glasgow Haskell Compiler";
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
maintainers = [
|
maintainers = [
|
||||||
stdenv.lib.maintainers.marcweber
|
stdenv.lib.maintainers.marcweber
|
||||||
stdenv.lib.maintainers.andres
|
stdenv.lib.maintainers.andres
|
||||||
stdenv.lib.maintainers.simons
|
stdenv.lib.maintainers.simons
|
||||||
];
|
];
|
||||||
platforms = ["x86_64-linux" "i686-linux" "i686-darwin" "x86_64-darwin"];
|
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is not supported.
|
||||||
|
inherit (ghc.meta) license;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -45,13 +45,13 @@ stdenv.mkDerivation rec {
|
|||||||
meta = {
|
meta = {
|
||||||
homepage = "http://haskell.org/ghc";
|
homepage = "http://haskell.org/ghc";
|
||||||
description = "The Glasgow Haskell Compiler";
|
description = "The Glasgow Haskell Compiler";
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
maintainers = [
|
maintainers = [
|
||||||
stdenv.lib.maintainers.marcweber
|
stdenv.lib.maintainers.marcweber
|
||||||
stdenv.lib.maintainers.andres
|
stdenv.lib.maintainers.andres
|
||||||
stdenv.lib.maintainers.simons
|
stdenv.lib.maintainers.simons
|
||||||
];
|
];
|
||||||
inherit (ghc.meta) license platforms;
|
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
|
||||||
|
inherit (ghc.meta) license;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user