Author: simons
Date: Fri Aug 12 11:52:07 2011
New Revision: 28514
URL: https://svn.nixos.org/websvn/nix/?rev=28514&sc=1

Log:
haskell-uuagc: updated to version 0.9.39.0

Added:
   nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/bootstrap.nix
      - copied, changed from r28513, 
nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/default.nix
   nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/cabal.nix
Modified:
   nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/default.nix
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Copied and modified: 
nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/bootstrap.nix (from r28513, 
nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/default.nix)
==============================================================================
--- nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/default.nix      Fri Aug 
12 11:02:48 2011        (r28513, copy source)
+++ nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/bootstrap.nix    Fri Aug 
12 11:52:07 2011        (r28514)
@@ -1,16 +1,16 @@
 { cabal, haskellSrcExts, mtl, uulib }:
 
 cabal.mkDerivation (self: {
-  pname = "uuagc";
-  version = "0.9.38.6";
-  sha256 = "1dr8vxis16rcdvklp0rv2d50bi33jag7n4wynbfqw9bzgyfbagnw";
+  pname = "uuagc-bootstrap";
+  version = "0.9.39.0.0";
+  sha256 = "1ds98nif6naafgf6vgf19nmwx5gbhz88gsh2zyxc4d4iqb0z5drv";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [ haskellSrcExts mtl uulib ];
   meta = {
     homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";;
     description = "Attribute Grammar System of Universiteit Utrecht";
-    license = "GPL";
+    license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;
     maintainers = [
       self.stdenv.lib.maintainers.andres

Added: nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/cabal.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/cabal.nix        Fri Aug 
12 11:52:07 2011        (r28514)
@@ -0,0 +1,17 @@
+{ cabal, mtl, uulib }:
+
+cabal.mkDerivation (self: {
+  pname = "uuagc-cabal";
+  version = "1.0.0.2";
+  sha256 = "0j5f30xx3z9fqcn4y2hhssbc9h0dycadk552d3a7i9rq7gsy59br";
+  buildDepends = [ mtl uulib ];
+  meta = {
+    homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";;
+    description = "Cabal plugin for the Universiteit Utrecht Attribute Grammar 
System";
+    license = self.stdenv.lib.licenses.bsd3;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
+  };
+})

Modified: nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/default.nix      Fri Aug 
12 11:02:48 2011        (r28513)
+++ nixpkgs/trunk/pkgs/development/tools/haskell/uuagc/default.nix      Fri Aug 
12 11:52:07 2011        (r28514)
@@ -1,16 +1,18 @@
-{ cabal, haskellSrcExts, mtl, uulib }:
+{ cabal, haskellSrcExts, mtl, uuagcBootstrap, uuagcCabal, uulib }:
 
 cabal.mkDerivation (self: {
   pname = "uuagc";
-  version = "0.9.38.6";
-  sha256 = "1dr8vxis16rcdvklp0rv2d50bi33jag7n4wynbfqw9bzgyfbagnw";
+  version = "0.9.39.0";
+  sha256 = "1jx1cisch97dd2dy2ddlx7s8zxrrv1wwp9pm2bl59sjakpp1kqwh";
   isLibrary = true;
   isExecutable = true;
-  buildDepends = [ haskellSrcExts mtl uulib ];
+  buildDepends = [
+    haskellSrcExts mtl uuagcBootstrap uuagcCabal uulib
+  ];
   meta = {
     homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";;
     description = "Attribute Grammar System of Universiteit Utrecht";
-    license = "GPL";
+    license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;
     maintainers = [
       self.stdenv.lib.maintainers.andres

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Fri Aug 12 11:02:48 
2011        (r28513)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Fri Aug 12 11:52:07 
2011        (r28514)
@@ -1390,6 +1390,8 @@
 
   threadscope = callPackage ../development/tools/haskell/threadscope {};
 
+  uuagcBootstrap = callPackage 
../development/tools/haskell/uuagc/bootstrap.nix {};
+  uuagcCabal = callPackage ../development/tools/haskell/uuagc/cabal.nix {};
   uuagc = callPackage ../development/tools/haskell/uuagc {};
 
   # Applications.
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to