From e3425105fc07d84eb091ee0af66cc107beac29a2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 18 May 2013 19:32:05 +0200 Subject: [PATCH] haskell-uu-options: update to version 0.1.0.1 --- .../libraries/haskell/uu-options/default.nix | 7 +++---- .../uu-options/no-executable-stanza.diff | 20 ------------------- 2 files changed, 3 insertions(+), 24 deletions(-) delete mode 100644 pkgs/development/libraries/haskell/uu-options/no-executable-stanza.diff diff --git a/pkgs/development/libraries/haskell/uu-options/default.nix b/pkgs/development/libraries/haskell/uu-options/default.nix index 2c375afac109..651cd9fe450a 100644 --- a/pkgs/development/libraries/haskell/uu-options/default.nix +++ b/pkgs/development/libraries/haskell/uu-options/default.nix @@ -2,14 +2,13 @@ cabal.mkDerivation (self: { pname = "uu-options"; - version = "0.1.0.0"; - sha256 = "08z465w0naw8hx831bcgqbwmp9zdmw3bq4i7rgz7zfzb088nfwzc"; + version = "0.1.0.1"; + sha256 = "0dygg4w3rlnf1pnmwq7i6vzz0v90b4g18ipfc5whn1ss1bixwxk4"; isLibrary = true; + isExecutable = true; buildDepends = [ lenses mtl transformers uuInterleaved uuParsinglib ]; - patchFlags = "-p0"; - patches = [ ./no-executable-stanza.diff ]; meta = { homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators"; description = "Parse command line options using uu-interleave and uu-parsinglib"; diff --git a/pkgs/development/libraries/haskell/uu-options/no-executable-stanza.diff b/pkgs/development/libraries/haskell/uu-options/no-executable-stanza.diff deleted file mode 100644 index 9f711765d535..000000000000 --- a/pkgs/development/libraries/haskell/uu-options/no-executable-stanza.diff +++ /dev/null @@ -1,20 +0,0 @@ -Index: uu-options.cabal -=================================================================== ---- uu-options.cabal (revision 127) -+++ uu-options.cabal (working copy) -@@ -27,14 +27,8 @@ - type: svn - location: https://svn.science.uu.nl/repos/project.STEC.uu-parsinglib/uu-options - --executable demo-options -- Main-is: Options/UU/OptionsDemo.hs -+library - hs-source-dirs: src - Build-Depends: base >= 4.2 && <5, uu-parsinglib >=2.8 && < 2.9, uu-interleaved >=0.1.0 && < 0.2, lenses >= 0.1.6 && < 0.1.7, transformers >= 0.3.0.0, mtl -- --Library -- hs-source-dirs: src -- Build-Depends: base >= 4.2 && <5, uu-parsinglib >=2.8 && < 2.9, uu-interleaved >=0.1.0 && < 0.2, lenses >= 0.1.6 && < 0.1.7, transformers >= 0.3.0.0, mtl - Exposed-modules: Options.UU.Interleaved - Options.UU.OptionsDemo --