summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/strict
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-09 09:54:50 +0000
committerPeter Simons <simons@cryp.to>2011-08-09 09:54:50 +0000
commitc13f967ed5c0a4670de067360f45f6f89d7e5824 (patch)
treefed5ffd7daaf3a38ef76347cc97c9398a489fe90 /pkgs/development/libraries/haskell/strict
parentc4b18a282f932f9789f363b73c368e394b76cf1a (diff)
downloadnixpkgs-c13f967ed5c0a4670de067360f45f6f89d7e5824.tar
nixpkgs-c13f967ed5c0a4670de067360f45f6f89d7e5824.tar.gz
nixpkgs-c13f967ed5c0a4670de067360f45f6f89d7e5824.tar.bz2
nixpkgs-c13f967ed5c0a4670de067360f45f6f89d7e5824.tar.lz
nixpkgs-c13f967ed5c0a4670de067360f45f6f89d7e5824.tar.xz
nixpkgs-c13f967ed5c0a4670de067360f45f6f89d7e5824.tar.zst
nixpkgs-c13f967ed5c0a4670de067360f45f6f89d7e5824.zip
Replaced the obsolete 'haskellPlatforms' attribute with the platforms exported by GHC.
svn path=/nixpkgs/trunk/; revision=28418
Diffstat (limited to 'pkgs/development/libraries/haskell/strict')
-rw-r--r--pkgs/development/libraries/haskell/strict/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/haskell/strict/default.nix b/pkgs/development/libraries/haskell/strict/default.nix
index ad8ff7b6739..d19472b0b1e 100644
--- a/pkgs/development/libraries/haskell/strict/default.nix
+++ b/pkgs/development/libraries/haskell/strict/default.nix
@@ -8,7 +8,7 @@ cabal.mkDerivation (self : {
     homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html";
     description = "Strict data types and String IO.";
     license = self.stdenv.lib.licenses.bsd3;
-    platforms = self.stdenv.lib.platforms.haskellPlatforms;
+    platforms = self.ghc.meta.platforms;
     maintainers = [ self.stdenv.lib.maintainers.andres ];
   };
 })