diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-06-21 17:31:25 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-06-21 17:31:25 +0200 |
commit | be19fd436d8f1ca0c534edfd81182bd737a88228 (patch) | |
tree | 3d6a7110aa240e4d759e9301ad34944ab20aaf95 | |
parent | a469f024336a6f7b0b55328cc33f5d1f6e21250c (diff) | |
download | trivmix-be19fd436d8f1ca0c534edfd81182bd737a88228.tar trivmix-be19fd436d8f1ca0c534edfd81182bd737a88228.tar.gz trivmix-be19fd436d8f1ca0c534edfd81182bd737a88228.tar.bz2 trivmix-be19fd436d8f1ca0c534edfd81182bd737a88228.tar.xz trivmix-be19fd436d8f1ca0c534edfd81182bd737a88228.zip |
Syntax error fix
-rw-r--r-- | src/Trivmix.hs | 2 | ||||
-rw-r--r-- | trivmix.cabal | 2 | ||||
-rw-r--r-- | trivmix.nix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Trivmix.hs b/src/Trivmix.hs index 96e578b..181025d 100644 --- a/src/Trivmix.hs +++ b/src/Trivmix.hs | |||
@@ -165,7 +165,7 @@ handleFiles :: INotify -> MVar Level -> [FilePath] -> IO () | |||
165 | handleFiles inotify level files = do | 165 | handleFiles inotify level files = do |
166 | initLevel <- readMVar level | 166 | initLevel <- readMVar level |
167 | levelChanges <- (newChan :: IO (Chan Level)) | 167 | levelChanges <- (newChan :: IO (Chan Level)) |
168 | stderrLock <- newMVar) () | 168 | stderrLock <- newMVar () |
169 | let | 169 | let |
170 | handleFile file = do | 170 | handleFile file = do |
171 | levelChanges' <- dupChan levelChanges | 171 | levelChanges' <- dupChan levelChanges |
diff --git a/trivmix.cabal b/trivmix.cabal index 3bc41ad..0fd85f2 100644 --- a/trivmix.cabal +++ b/trivmix.cabal | |||
@@ -2,7 +2,7 @@ | |||
2 | -- documentation, see http://haskell.org/cabal/users-guide/ | 2 | -- documentation, see http://haskell.org/cabal/users-guide/ |
3 | 3 | ||
4 | name: trivmix | 4 | name: trivmix |
5 | version: 2.4.1 | 5 | version: 2.4.2 |
6 | -- synopsis: | 6 | -- synopsis: |
7 | -- description: | 7 | -- description: |
8 | license: PublicDomain | 8 | license: PublicDomain |
diff --git a/trivmix.nix b/trivmix.nix index 34b2fde..ebeb77f 100644 --- a/trivmix.nix +++ b/trivmix.nix | |||
@@ -6,7 +6,7 @@ | |||
6 | 6 | ||
7 | cabal.mkDerivation (self: { | 7 | cabal.mkDerivation (self: { |
8 | pname = "trivmix"; | 8 | pname = "trivmix"; |
9 | version = "2.4.1"; | 9 | version = "2.4.2"; |
10 | src = ./.; | 10 | src = ./.; |
11 | isLibrary = false; | 11 | isLibrary = false; |
12 | isExecutable = true; | 12 | isExecutable = true; |