summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/web-routes-quasi
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2011-07-07 21:40:35 +0000
committerAndres Löh <mail@andres-loeh.de>2011-07-07 21:40:35 +0000
commit1b603fe1574a18b466e9c2f43052883225638c2c (patch)
tree5aa87b51bd349ea52ad0d936cdf93caf78f127b5 /pkgs/development/libraries/haskell/web-routes-quasi
parentf8b1ace1d75478b4a130364402503a2d68af3828 (diff)
downloadnixpkgs-1b603fe1574a18b466e9c2f43052883225638c2c.tar
nixpkgs-1b603fe1574a18b466e9c2f43052883225638c2c.tar.gz
nixpkgs-1b603fe1574a18b466e9c2f43052883225638c2c.tar.bz2
nixpkgs-1b603fe1574a18b466e9c2f43052883225638c2c.tar.lz
nixpkgs-1b603fe1574a18b466e9c2f43052883225638c2c.tar.xz
nixpkgs-1b603fe1574a18b466e9c2f43052883225638c2c.tar.zst
nixpkgs-1b603fe1574a18b466e9c2f43052883225638c2c.zip
Added yesod-core.
svn path=/nixpkgs/trunk/; revision=27650
Diffstat (limited to 'pkgs/development/libraries/haskell/web-routes-quasi')
-rw-r--r--pkgs/development/libraries/haskell/web-routes-quasi/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/haskell/web-routes-quasi/default.nix b/pkgs/development/libraries/haskell/web-routes-quasi/default.nix
index 8d0303d65bb..434a19cfcfe 100644
--- a/pkgs/development/libraries/haskell/web-routes-quasi/default.nix
+++ b/pkgs/development/libraries/haskell/web-routes-quasi/default.nix
@@ -1,13 +1,13 @@
-{cabal, webRoutes}:
+{cabal, text}:
 
 cabal.mkDerivation (self : {
   pname = "web-routes-quasi";
-  version = "0.5.0";
-  sha256 = "07ef2717b44f92bccee9af4b4d9a173c12ec3b3b1d49a8495811dad0af240673";
-  propagatedBuildInputs = [webRoutes];
+  version = "0.7.0.1";
+  sha256 = "1khrf5kbw285hddyyzcz2mx4qpz46mdmlm31jszag2ay64gw35gw";
+  propagatedBuildInputs = [text];
   meta = {
     description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL";
-    license = "BSD";
+    license = "BSD3";
     maintainers = [self.stdenv.lib.maintainers.andres];
   };
 })