summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-08-18 01:25:51 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-08-18 17:15:54 +0100
commit4cf5ef541f1ccf22202f90f148c2acb2ed5d061a (patch)
treec306a5ba1dc9ce57311d6a49be2dea0657dae561 /pkgs/development
parent32739cffdec41bd810ec5ab9362162057abe5db3 (diff)
downloadnixpkgs-4cf5ef541f1ccf22202f90f148c2acb2ed5d061a.tar
nixpkgs-4cf5ef541f1ccf22202f90f148c2acb2ed5d061a.tar.gz
nixpkgs-4cf5ef541f1ccf22202f90f148c2acb2ed5d061a.tar.bz2
nixpkgs-4cf5ef541f1ccf22202f90f148c2acb2ed5d061a.tar.lz
nixpkgs-4cf5ef541f1ccf22202f90f148c2acb2ed5d061a.tar.xz
nixpkgs-4cf5ef541f1ccf22202f90f148c2acb2ed5d061a.tar.zst
nixpkgs-4cf5ef541f1ccf22202f90f148c2acb2ed5d061a.zip
haskell-haskoin: add 0.1.0.2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/haskoin/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/haskoin/default.nix b/pkgs/development/libraries/haskell/haskoin/default.nix
new file mode 100644
index 00000000000..120111f35f0
--- /dev/null
+++ b/pkgs/development/libraries/haskell/haskoin/default.nix
@@ -0,0 +1,27 @@
+# This file was auto-generated by cabal2nix. Please do NOT edit manually!
+
+{ cabal, aeson, async, binary, byteable, cryptohash, deepseq
+, either, HUnit, jsonRpc, mtl, pbkdf, QuickCheck, split
+, testFramework, testFrameworkHunit, testFrameworkQuickcheck2, text
+}:
+
+cabal.mkDerivation (self: {
+  pname = "haskoin";
+  version = "0.1.0.2";
+  sha256 = "0l3h2wvi56k0dcfjambqyjrd45hb7bj0brp8nzrrcfn7fbpyjg8c";
+  buildDepends = [
+    aeson binary byteable cryptohash deepseq either jsonRpc mtl pbkdf
+    split text
+  ];
+  testDepends = [
+    aeson async binary byteable cryptohash deepseq either HUnit jsonRpc
+    mtl pbkdf QuickCheck split testFramework testFrameworkHunit
+    testFrameworkQuickcheck2 text
+  ];
+  meta = {
+    homepage = "http://github.com/haskoin/haskoin";
+    description = "Implementation of the Bitcoin protocol";
+    license = self.stdenv.lib.licenses.publicDomain;
+    platforms = self.ghc.meta.platforms;
+  };
+})