Hook the Nix styling scripts into CI (#1504)

This commit is contained in:
Remo
2020-04-29 10:44:11 -05:00
committed by GitHub
parent 9134171b95
commit d4cf8e7abb
2 changed files with 40 additions and 32 deletions
+30 -5
View File
@@ -1,6 +1,19 @@
{ mkDerivation, array, async, base, bytestring, containers, deepseq
, ghc-prim, hashable, mtl, mtl-compat, stdenv, stm, text
, transformers, transformers-compat
{ mkDerivation
, array
, async
, base
, bytestring
, containers
, deepseq
, ghc-prim
, hashable
, mtl
, mtl-compat
, stdenv
, stm
, text
, transformers
, transformers-compat
}:
mkDerivation {
pname = "protolude";
@@ -9,8 +22,20 @@ mkDerivation {
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
array async base bytestring containers deepseq ghc-prim hashable
mtl mtl-compat stm text transformers transformers-compat
array
async
base
bytestring
containers
deepseq
ghc-prim
hashable
mtl
mtl-compat
stm
text
transformers
transformers-compat
];
homepage = "https://github.com/sdiehl/protolude";
description = "A small prelude";