1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 05:26:13 -04:00
nixpkgs/pkgs/development/libraries/haskell/srcloc/default.nix
Andres Loeh 001fb53524 Revert "haskell-srcloc: update to version 0.2.0"
This reverts commit ffbdd377f1.

Version 0.2.0 breaks accelerate-cuda, and doesn't seem to be required
or used in many other places, so I'll just revert.
2012-07-18 10:25:52 +02:00

16 lines
481 B
Nix

{ cabal, syb, symbol }:
cabal.mkDerivation (self: {
pname = "srcloc";
version = "0.1.2";
sha256 = "08awipz6al7jk7d974am5v9fkp87i5dy6d457mx1rv7lczlyhws9";
buildDepends = [ syb symbol ];
meta = {
homepage = "http://www.eecs.harvard.edu/~mainland/";
description = "Data types for managing source code locations";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})