From 5e0e1a2a2b06c17a818805a13261425438020e15 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Mon, 7 Oct 2019 09:57:36 +0100 Subject: Remove nix folder --- nix/tomland.nix | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 nix/tomland.nix (limited to 'nix/tomland.nix') 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; -} -- cgit