nixpkgs/pkgs/applications/networking/notbit/default.nix

25 lines
693 B
Nix
Raw Normal View History

2014-03-10 17:03:55 +01:00
{ stdenv, fetchgit, autoconf, automake, pkgconfig, openssl }:
stdenv.mkDerivation rec {
2015-02-12 00:23:19 +01:00
name = "notbit-git-6f1ca59";
2014-03-10 17:03:55 +01:00
src = fetchgit {
2014-05-10 06:20:13 +02:00
url = "git://github.com/bpeel/notbit";
2015-02-12 00:23:19 +01:00
rev = "6f1ca5987c7f217c9c3dd27adf6ac995004c29a1";
sha256 = "0h9nzm248pw9wrdsfkr580ghiqvh6mk6vx7r2r752awrc13wvgis";
2014-03-10 17:03:55 +01:00
};
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;
};
}