-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
f76c851
commit c90c674
Showing
1 changed file
with
19 additions
and
0 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,19 @@ | ||
{ mkDerivation, aeson, base, bytestring, cereal, extra, lib | ||
, mwc-random, optparse-applicative, text | ||
}: | ||
mkDerivation { | ||
pname = "NanoID"; | ||
version = "3.4.0.1"; | ||
sha256 = "43785ef712a39c1b03e66b332d405083f95034a082494de871d0099d798c62bc"; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
aeson base bytestring cereal extra mwc-random text | ||
]; | ||
executableHaskellDepends = [ | ||
base bytestring mwc-random optparse-applicative | ||
]; | ||
description = "NanoID generator"; | ||
license = lib.licenses.bsd3; | ||
mainProgram = "nanoid"; | ||
} |