From eb573762e8825291c9da22449e901624335a912c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 7 Aug 2011 18:22:09 +0000 Subject: [PATCH] haskell-src-meta: updated to version 0.4.0.1 svn path=/nixpkgs/trunk/; revision=28230 --- .../libraries/haskell/haskell-src-meta/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/haskell/haskell-src-meta/default.nix b/pkgs/development/libraries/haskell/haskell-src-meta/default.nix index bc4455cadf3c..98e8158c9e88 100644 --- a/pkgs/development/libraries/haskell/haskell-src-meta/default.nix +++ b/pkgs/development/libraries/haskell/haskell-src-meta/default.nix @@ -1,12 +1,14 @@ -{cabal, haskellSrcExts}: +{cabal, haskellSrcExts, syb, thLift} : cabal.mkDerivation (self : { pname = "haskell-src-meta"; - version = "0.0.5"; - sha256 = "96e55d6b5237043f8b3943b40c55e26ef6a2806d1314d784202135497e645add"; - propagatedBuildInputs = [haskellSrcExts]; + version = "0.4.0.1"; + sha256 = "10g74sax8x45lphy133717y9xb43d8a684mm9qv0arjwn5v4np7s"; + propagatedBuildInputs = [ haskellSrcExts syb thLift ]; meta = { - description = "Parse source to template-haskell abstract syntax"; + description = "Parse source to template-haskell abstract syntax."; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.stdenv.lib.platforms.haskellPlatforms; + maintainers = [ self.stdenv.lib.maintainers.simons ]; }; }) -