-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tom Sydney Kerckhove
committed
Aug 11, 2024
1 parent
17294d1
commit 053a1fb
Showing
60 changed files
with
519 additions
and
8 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 @@ | ||
use flake |
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,2 @@ | ||
packages: */*.cabal | ||
test-show-details: direct |
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,48 @@ | ||
{ mkDerivation | ||
, aeson | ||
, base | ||
, bytestring | ||
, deepseq | ||
, exceptions | ||
, filepath | ||
, genvalidity | ||
, genvalidity-hspec | ||
, hashable | ||
, hspec | ||
, lib | ||
, QuickCheck | ||
, template-haskell | ||
, text | ||
, validity-bytestring | ||
}: | ||
mkDerivation { | ||
pname = "path"; | ||
version = "0.9.6"; | ||
src = ./.; | ||
libraryHaskellDepends = [ | ||
aeson | ||
base | ||
deepseq | ||
exceptions | ||
filepath | ||
hashable | ||
template-haskell | ||
text | ||
]; | ||
testHaskellDepends = [ | ||
aeson | ||
base | ||
bytestring | ||
exceptions | ||
filepath | ||
genvalidity | ||
genvalidity-hspec | ||
hspec | ||
QuickCheck | ||
template-haskell | ||
validity-bytestring | ||
]; | ||
doHaddock = false; | ||
description = "Support for well-typed paths"; | ||
license = lib.licenses.bsd3; | ||
} |
Oops, something went wrong.