-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdefault.nix
More file actions
24 lines (22 loc) · 731 Bytes
/
default.nix
File metadata and controls
24 lines (22 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, aeson, attoparsec, base16Bytestring, binary, cryptohash
, either, hashable, haskoin, pbkdf, RFC1751, scientific, text
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "hx";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
buildDepends = [
aeson attoparsec base16Bytestring binary cryptohash either hashable
haskoin pbkdf RFC1751 scientific text unorderedContainers
];
meta = {
homepage = "https://github.com/np/hx";
description = "Bitcoin CLI tools: Haskell port of Sx using Haskoin";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
};
})