summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/colorize-haskell
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-07 19:34:20 +0000
committerPeter Simons <simons@cryp.to>2011-08-07 19:34:20 +0000
commit3f665a39ee57f5981160fff15973a21d37bfc9c9 (patch)
tree08e34e4a0a59d449c36d3d8de461502eac05d1d9 /pkgs/development/libraries/haskell/colorize-haskell
parentaa89a1889512e532db5711b0f296eac5ba56f24a (diff)
downloadnixpkgs-3f665a39ee57f5981160fff15973a21d37bfc9c9.tar
nixpkgs-3f665a39ee57f5981160fff15973a21d37bfc9c9.tar.gz
nixpkgs-3f665a39ee57f5981160fff15973a21d37bfc9c9.tar.bz2
nixpkgs-3f665a39ee57f5981160fff15973a21d37bfc9c9.tar.lz
nixpkgs-3f665a39ee57f5981160fff15973a21d37bfc9c9.tar.xz
nixpkgs-3f665a39ee57f5981160fff15973a21d37bfc9c9.tar.zst
nixpkgs-3f665a39ee57f5981160fff15973a21d37bfc9c9.zip
colorize-haskell: updated to version 1.0.1
svn path=/nixpkgs/trunk/; revision=28268
Diffstat (limited to 'pkgs/development/libraries/haskell/colorize-haskell')
-rw-r--r--pkgs/development/libraries/haskell/colorize-haskell/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/libraries/haskell/colorize-haskell/default.nix b/pkgs/development/libraries/haskell/colorize-haskell/default.nix
index 1a74796981f..54f3bb6e71b 100644
--- a/pkgs/development/libraries/haskell/colorize-haskell/default.nix
+++ b/pkgs/development/libraries/haskell/colorize-haskell/default.nix
@@ -1,12 +1,15 @@
-{cabal, ansiTerminal, haskellLexer}:
+{cabal, ansiTerminal, haskellLexer} :
 
 cabal.mkDerivation (self : {
   pname = "colorize-haskell";
-  version = "1.0.0";
-  sha256 = "14c180ea3e8beb12dd289c51453bd2e3583f306799db4630c8f86cf09bbb3763";
-  propagatedBuildInputs = [ansiTerminal haskellLexer];
+  version = "1.0.1";
+  sha256 = "1v4spa6vw9igjpd1dr595z5raz5fr8f485q5w9imrv8spms46xh3";
+  propagatedBuildInputs = [ ansiTerminal haskellLexer ];
   meta = {
-    description = "Highlight Haskell source";
+    homepage = "http://github.com/yav/colorize-haskell";
+    description = "Highligt Haskell source";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.stdenv.lib.platforms.haskellPlatforms;
+    maintainers = [ self.stdenv.lib.maintainers.simons ];
   };
 })
-