about summary refs log tree commit diff
path: root/pkgs/applications/networking/notbit/default.nix
blob: aa5d47730a4aa167c8c324e4569d61c26e3d274f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchgit, autoconf, automake, pkgconfig, openssl }:

stdenv.mkDerivation rec {
  name = "notbit-git-6f1ca59";

  src = fetchgit {
    url = "git://github.com/bpeel/notbit";
    rev = "6f1ca5987c7f217c9c3dd27adf6ac995004c29a1";
    sha256 = "0h9nzm248pw9wrdsfkr580ghiqvh6mk6vx7r2r752awrc13wvgis";
  };

  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;
  };
}