-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TEMP: Setup nix for custom version of repline
- Loading branch information
1 parent
2651e9f
commit b026a2e
Showing
4 changed files
with
55 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ mkDerivation, base, mtl, QuickCheck, stdenv, stm | ||
, template-haskell, test-framework, test-framework-hunit | ||
, test-framework-quickcheck2, transformers | ||
}: | ||
mkDerivation { | ||
pname = "exceptions"; | ||
version = "0.10.4"; | ||
sha256 = "4d0bfb4355cffcd67d300811df9d5fe44ea3594ed63750795bfc1f797abd84cf"; | ||
revision = "1"; | ||
editedCabalFile = "0b5m01nmaqzvvm1d07b3dnmcn47pmy943lydb2m7ibhilqkfya8p"; | ||
libraryHaskellDepends = [ | ||
base mtl stm template-haskell transformers | ||
]; | ||
testHaskellDepends = [ | ||
base mtl QuickCheck stm template-haskell test-framework | ||
test-framework-hunit test-framework-quickcheck2 transformers | ||
]; | ||
homepage = "http://github.com/ekmett/exceptions/"; | ||
description = "Extensible optionally-pure exceptions"; | ||
license = stdenv.lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ mkDerivation, base, bytestring, containers, directory, exceptions | ||
, filepath, HUnit, process, stdenv, stm, terminfo, text | ||
, transformers, unix | ||
}: | ||
mkDerivation { | ||
pname = "haskeline"; | ||
version = "0.8.0.0"; | ||
sha256 = "eb269b1d8d9c59a60677dd69dfa96f6cdb1a0cce9c6c28484d35e60674511a3f"; | ||
configureFlags = [ "-fterminfo" ]; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
base bytestring containers directory exceptions filepath process | ||
stm terminfo transformers unix | ||
]; | ||
executableHaskellDepends = [ base containers ]; | ||
testHaskellDepends = [ | ||
base bytestring containers HUnit process text unix | ||
]; | ||
homepage = "https://github.com/judah/haskeline"; | ||
description = "A command-line interface for user input, written in Haskell"; | ||
license = stdenv.lib.licenses.bsd3; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters