about summary refs log tree commit diff
path: root/pkgs/applications/networking/notbit
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-03-10 11:03:55 -0500
committerWilliam A. Kennington III <william@wkennington.com>2014-03-12 11:28:16 -0500
commit635cb24bb1c009d86a0a4d86263d2266a0f3a6e0 (patch)
tree94384b915240a6704e85a947a9dacb4a396eddef /pkgs/applications/networking/notbit
parent4c226fb88a52aa0bc0f83d1e42d65ad0ad23ea26 (diff)
downloadnixlib-635cb24bb1c009d86a0a4d86263d2266a0f3a6e0.tar
nixlib-635cb24bb1c009d86a0a4d86263d2266a0f3a6e0.tar.gz
nixlib-635cb24bb1c009d86a0a4d86263d2266a0f3a6e0.tar.bz2
nixlib-635cb24bb1c009d86a0a4d86263d2266a0f3a6e0.tar.lz
nixlib-635cb24bb1c009d86a0a4d86263d2266a0f3a6e0.tar.xz
nixlib-635cb24bb1c009d86a0a4d86263d2266a0f3a6e0.tar.zst
nixlib-635cb24bb1c009d86a0a4d86263d2266a0f3a6e0.zip
notbit: Add Package
Diffstat (limited to 'pkgs/applications/networking/notbit')
-rw-r--r--pkgs/applications/networking/notbit/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/notbit/default.nix b/pkgs/applications/networking/notbit/default.nix
new file mode 100644
index 000000000000..db900f9ff256
--- /dev/null
+++ b/pkgs/applications/networking/notbit/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchgit, autoconf, automake, pkgconfig, openssl }:
+
+stdenv.mkDerivation rec {
+  name = "notbit-0.2-28-g06f9160";
+
+  src = fetchgit {
+    url = "git://git.busydoingnothing.co.uk/notbit";
+    rev = "06f916081836de12f8e57a9f50c95d4d1b51627f";
+    sha256 = "d5c38eea1d9ca213bfbea5c88350478a5088b5532e939de9680d72e60aa65288";
+  };
+
+  buildInputs = [ autoconf automake pkgconfig openssl ];
+
+  preConfigure = "autoreconf -vfi";
+
+  meta = with stdenv.lib; { 
+    homepage = http://busydoingnothing.co.uk/notbit/;
+    description = "A minimal bitmessage client";
+    license = licenses.mit;
+
+    # This is planned to change when the project officially supports other platforms
+    platforms = platforms.linux;
+  };
+}