aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2016-07-18 12:32:59 +0200
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2016-07-18 12:32:59 +0200
commit947fdb54351071745b6f35f668e39a2b1207918e (patch)
tree3df408e12ee3f09bea062717b65761f1879b2602
parent9e17810329dbfa0adc0ee3042556fbd13f810d5c (diff)
downloadthermoprint-947fdb54351071745b6f35f668e39a2b1207918e.tar
thermoprint-947fdb54351071745b6f35f668e39a2b1207918e.tar.gz
thermoprint-947fdb54351071745b6f35f668e39a2b1207918e.tar.bz2
thermoprint-947fdb54351071745b6f35f668e39a2b1207918e.tar.xz
thermoprint-947fdb54351071745b6f35f668e39a2b1207918e.zip
update .nix files
-rw-r--r--bbcode/bbcode.nix2
-rw-r--r--client/thermoprint-client.nix12
-rw-r--r--server/thermoprint-server.nix6
-rw-r--r--spec/thermoprint-spec.nix2
-rw-r--r--tp-bbcode/thermoprint-bbcode.nix2
-rw-r--r--tprint/tprint.nix2
-rw-r--r--webgui/thermoprint-webgui.nix2
7 files changed, 14 insertions, 14 deletions
diff --git a/bbcode/bbcode.nix b/bbcode/bbcode.nix
index 30a6b49..bacc228 100644
--- a/bbcode/bbcode.nix
+++ b/bbcode/bbcode.nix
@@ -3,7 +3,7 @@
3}: 3}:
4mkDerivation { 4mkDerivation {
5 pname = "bbcode"; 5 pname = "bbcode";
6 version = "3.1.0"; 6 version = "3.1.1";
7 src = ./.; 7 src = ./.;
8 libraryHaskellDepends = [ 8 libraryHaskellDepends = [
9 attoparsec base case-insensitive containers rosezipper text 9 attoparsec base case-insensitive containers rosezipper text
diff --git a/client/thermoprint-client.nix b/client/thermoprint-client.nix
index 6471b06..8e608cf 100644
--- a/client/thermoprint-client.nix
+++ b/client/thermoprint-client.nix
@@ -1,14 +1,14 @@
1{ mkDerivation, base, containers, either, exceptions, servant 1{ mkDerivation, base, containers, either, exceptions, http-client
2, servant-client, servant-server, stdenv, thermoprint-spec, time 2, mtl, servant, servant-client, servant-server, stdenv
3, transformers 3, thermoprint-spec, time, transformers
4}: 4}:
5mkDerivation { 5mkDerivation {
6 pname = "thermoprint-client"; 6 pname = "thermoprint-client";
7 version = "0.0.0"; 7 version = "1.0.0";
8 src = ./.; 8 src = ./.;
9 libraryHaskellDepends = [ 9 libraryHaskellDepends = [
10 base containers either exceptions servant servant-client 10 base containers either exceptions http-client mtl servant
11 servant-server thermoprint-spec time transformers 11 servant-client servant-server thermoprint-spec time transformers
12 ]; 12 ];
13 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 13 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
14 description = "Client for thermoprint-spec"; 14 description = "Client for thermoprint-spec";
diff --git a/server/thermoprint-server.nix b/server/thermoprint-server.nix
index 6ff8b10..a40dddb 100644
--- a/server/thermoprint-server.nix
+++ b/server/thermoprint-server.nix
@@ -1,6 +1,6 @@
1{ mkDerivation, async, base, binary, bytestring, conduit 1{ mkDerivation, async, base, binary, bytestring, conduit
2, containers, data-default-class, deepseq, dyre, either, encoding 2, containers, data-default-class, deepseq, dyre, either, encoding
3, exceptions, extended-reals, filelock, hspec, mmorph 3, exceptions, extended-reals, filelock, hspec, http-types, mmorph
4, monad-control, monad-logger, mtl, network-uri, persistent 4, monad-control, monad-logger, mtl, network-uri, persistent
5, persistent-sqlite, persistent-template, QuickCheck 5, persistent-sqlite, persistent-template, QuickCheck
6, quickcheck-instances, resourcet, servant, servant-server, stdenv 6, quickcheck-instances, resourcet, servant, servant-server, stdenv
@@ -9,7 +9,7 @@
9}: 9}:
10mkDerivation { 10mkDerivation {
11 pname = "thermoprint-server"; 11 pname = "thermoprint-server";
12 version = "1.1.0"; 12 version = "2.0.1";
13 src = ./.; 13 src = ./.;
14 isLibrary = true; 14 isLibrary = true;
15 isExecutable = true; 15 isExecutable = true;
@@ -25,7 +25,7 @@ mkDerivation {
25 base monad-logger mtl persistent-sqlite resourcet 25 base monad-logger mtl persistent-sqlite resourcet
26 ]; 26 ];
27 testHaskellDepends = [ 27 testHaskellDepends = [
28 async base containers exceptions hspec monad-logger mtl 28 async base containers exceptions hspec http-types monad-logger mtl
29 persistent-sqlite QuickCheck quickcheck-instances resourcet stm 29 persistent-sqlite QuickCheck quickcheck-instances resourcet stm
30 temporary text thermoprint-client thermoprint-spec transformers 30 temporary text thermoprint-client thermoprint-spec transformers
31 warp 31 warp
diff --git a/spec/thermoprint-spec.nix b/spec/thermoprint-spec.nix
index b67273a..3480782 100644
--- a/spec/thermoprint-spec.nix
+++ b/spec/thermoprint-spec.nix
@@ -4,7 +4,7 @@
4}: 4}:
5mkDerivation { 5mkDerivation {
6 pname = "thermoprint-spec"; 6 pname = "thermoprint-spec";
7 version = "3.0.0"; 7 version = "4.0.0";
8 src = ./.; 8 src = ./.;
9 libraryHaskellDepends = [ 9 libraryHaskellDepends = [
10 aeson base base64-bytestring bytestring Cabal cabal-test-quickcheck 10 aeson base base64-bytestring bytestring Cabal cabal-test-quickcheck
diff --git a/tp-bbcode/thermoprint-bbcode.nix b/tp-bbcode/thermoprint-bbcode.nix
index 7cec719..27c3f60 100644
--- a/tp-bbcode/thermoprint-bbcode.nix
+++ b/tp-bbcode/thermoprint-bbcode.nix
@@ -4,7 +4,7 @@
4}: 4}:
5mkDerivation { 5mkDerivation {
6 pname = "thermoprint-bbcode"; 6 pname = "thermoprint-bbcode";
7 version = "1.0.0"; 7 version = "2.0.0";
8 src = ./.; 8 src = ./.;
9 libraryHaskellDepends = [ 9 libraryHaskellDepends = [
10 base bbcode bytestring case-insensitive containers text 10 base bbcode bytestring case-insensitive containers text
diff --git a/tprint/tprint.nix b/tprint/tprint.nix
index 3a23af2..946a4ce 100644
--- a/tprint/tprint.nix
+++ b/tprint/tprint.nix
@@ -4,7 +4,7 @@
4}: 4}:
5mkDerivation { 5mkDerivation {
6 pname = "tprint"; 6 pname = "tprint";
7 version = "1.0.0"; 7 version = "2.0.0";
8 src = ./.; 8 src = ./.;
9 isLibrary = false; 9 isLibrary = false;
10 isExecutable = true; 10 isExecutable = true;
diff --git a/webgui/thermoprint-webgui.nix b/webgui/thermoprint-webgui.nix
index 457f39a..aa4b7af 100644
--- a/webgui/thermoprint-webgui.nix
+++ b/webgui/thermoprint-webgui.nix
@@ -5,7 +5,7 @@
5}: 5}:
6mkDerivation { 6mkDerivation {
7 pname = "thermoprint-webgui"; 7 pname = "thermoprint-webgui";
8 version = "0.0.0"; 8 version = "1.0.1";
9 src = ./.; 9 src = ./.;
10 isLibrary = false; 10 isLibrary = false;
11 isExecutable = true; 11 isExecutable = true;