aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2019-10-07 09:57:36 +0100
committerYann Herklotz <git@yannherklotz.com>2019-10-07 09:57:36 +0100
commit5e0e1a2a2b06c17a818805a13261425438020e15 (patch)
tree4b75a328b1a4e759d3e62fde93ec465241034b51
parentb78750746ac0e4d082e38bda70db4d5ec41817e3 (diff)
downloadverismith-5e0e1a2a2b06c17a818805a13261425438020e15.tar.gz
verismith-5e0e1a2a2b06c17a818805a13261425438020e15.zip
Remove nix folder
-rw-r--r--nix/hedgehog-fn.nix17
-rw-r--r--nix/parser-combinators.nix10
-rw-r--r--nix/tasty-hedgehog.nix17
-rw-r--r--nix/tomland.nix33
4 files changed, 0 insertions, 77 deletions
diff --git a/nix/hedgehog-fn.nix b/nix/hedgehog-fn.nix
deleted file mode 100644
index 0bf9279..0000000
--- a/nix/hedgehog-fn.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ mkDerivation, base, contravariant, hedgehog, stdenv, transformers
-}:
-mkDerivation {
- pname = "hedgehog-fn";
- version = "0.6";
- sha256 = "fb02b67fba97e24c226feba010d2b308934c54e20a0723b6ea7e4eb199f02176";
- revision = "1";
- editedCabalFile = "19v7amg8l6s1gadnya8nxkcbi0vd3wqc7h6gvqvs099qaqm7zbb1";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base contravariant hedgehog transformers
- ];
- homepage = "https://github.com/qfpl/hedgehog-fn";
- description = "Function generation for `hedgehog`";
- license = stdenv.lib.licenses.bsd3;
-}
diff --git a/nix/parser-combinators.nix b/nix/parser-combinators.nix
deleted file mode 100644
index d1baab9..0000000
--- a/nix/parser-combinators.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{ mkDerivation, base, stdenv }:
-mkDerivation {
- pname = "parser-combinators";
- version = "1.1.0";
- sha256 = "ac7642972b18a47c575d2bcd0b2f6c34f33ca2ed3adb28034420d09ced823e91";
- libraryHaskellDepends = [ base ];
- homepage = "https://github.com/mrkkrp/parser-combinators";
- description = "Lightweight package providing commonly useful parser combinators";
- license = stdenv.lib.licenses.bsd3;
-}
diff --git a/nix/tasty-hedgehog.nix b/nix/tasty-hedgehog.nix
deleted file mode 100644
index e9a937d..0000000
--- a/nix/tasty-hedgehog.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ mkDerivation, base, hedgehog, stdenv, tagged, tasty
-, tasty-expected-failure
-}:
-mkDerivation {
- pname = "tasty-hedgehog";
- version = "0.2.0.0";
- sha256 = "5a107fc3094efc50663e4634331a296281318b38c9902969c2d2d215d754a182";
- revision = "6";
- editedCabalFile = "0d7s1474pvnyad6ilr5rvpama7s468ya9ns4ksbl0827z9vvga43";
- libraryHaskellDepends = [ base hedgehog tagged tasty ];
- testHaskellDepends = [
- base hedgehog tasty tasty-expected-failure
- ];
- homepage = "https://github.com/qfpl/tasty-hedgehog";
- description = "Integration for tasty and hedgehog";
- license = stdenv.lib.licenses.bsd3;
-}
diff --git a/nix/tomland.nix b/nix/tomland.nix
deleted file mode 100644
index e771e20..0000000
--- a/nix/tomland.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ mkDerivation, aeson, base, bytestring, containers, deepseq
-, directory, gauge, hashable, hedgehog, hspec-megaparsec, htoml
-, htoml-megaparsec, markdown-unlit, megaparsec, mtl, parsec
-, parser-combinators, stdenv, tasty, tasty-discover, tasty-hedgehog
-, tasty-hspec, tasty-silver, text, time, toml-parser, transformers
-, unordered-containers
-}:
-mkDerivation {
- pname = "tomland";
- version = "1.1.0.1";
- sha256 = "51cde31c25056c6a0714758eb782bda0c019bdd2ef58f29baf6364cbf6451f46";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring containers deepseq hashable megaparsec mtl
- parser-combinators text time transformers unordered-containers
- ];
- executableHaskellDepends = [ base text time unordered-containers ];
- executableToolDepends = [ markdown-unlit ];
- testHaskellDepends = [
- base bytestring containers directory hashable hedgehog
- hspec-megaparsec megaparsec tasty tasty-hedgehog tasty-hspec
- tasty-silver text time unordered-containers
- ];
- testToolDepends = [ tasty-discover ];
- benchmarkHaskellDepends = [
- aeson base deepseq gauge htoml htoml-megaparsec parsec text time
- toml-parser
- ];
- homepage = "https://github.com/kowainik/tomland";
- description = "Bidirectional TOML serialization";
- license = stdenv.lib.licenses.mpl20;
-}