diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-10-17 21:52:17 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-10-17 21:52:17 +0200 |
commit | d40917517feeaffc3d8e90cf8e06004623b0c5ff (patch) | |
tree | bde4206658b8e9645eff79904e0111a373ad7757 | |
parent | 12290103202f812d8632c5e6a0ae903bc776d5fc (diff) | |
download | trivmix-d40917517feeaffc3d8e90cf8e06004623b0c5ff.tar trivmix-d40917517feeaffc3d8e90cf8e06004623b0c5ff.tar.gz trivmix-d40917517feeaffc3d8e90cf8e06004623b0c5ff.tar.bz2 trivmix-d40917517feeaffc3d8e90cf8e06004623b0c5ff.tar.xz trivmix-d40917517feeaffc3d8e90cf8e06004623b0c5ff.zip |
version bump
-rw-r--r-- | trivmix.nix | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/trivmix.nix b/trivmix.nix index 14e480e..5fca173 100644 --- a/trivmix.nix +++ b/trivmix.nix | |||
@@ -1,10 +1,10 @@ | |||
1 | # This file was auto-generated by cabal2nix. Please do NOT edit manually! | 1 | # This file was auto-generated by cabal2nix. Please do NOT edit manually! |
2 | 2 | ||
3 | { cabal, caseInsensitive, dataDefault, explicitException, filelock | 3 | { mkDerivation, stdenv, caseInsensitive, dataDefault, explicitException, filelock |
4 | , filepath, hinotify, jack, optparseApplicative, transformers | 4 | , filepath, hinotify, jack, optparseApplicative, transformers |
5 | }: | 5 | }: |
6 | 6 | ||
7 | cabal.mkDerivation (self: { | 7 | mkDerivation { |
8 | pname = "trivmix"; | 8 | pname = "trivmix"; |
9 | version = "2.6.2"; | 9 | version = "2.6.2"; |
10 | src = ./.; | 10 | src = ./.; |
@@ -14,8 +14,5 @@ cabal.mkDerivation (self: { | |||
14 | caseInsensitive dataDefault explicitException filelock filepath | 14 | caseInsensitive dataDefault explicitException filelock filepath |
15 | hinotify jack optparseApplicative transformers | 15 | hinotify jack optparseApplicative transformers |
16 | ]; | 16 | ]; |
17 | meta = { | 17 | license = stdenv.lib.licenses.publicDomain; |
18 | license = self.stdenv.lib.licenses.publicDomain; | 18 | } |
19 | platforms = self.ghc.meta.platforms; | ||
20 | }; | ||
21 | }) | ||