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

25 lines
705 B
Nix
Raw Normal View History

2014-03-10 16:03:55 +00:00
{ stdenv, fetchgit, autoconf, automake, pkgconfig, openssl }:
stdenv.mkDerivation rec {
2014-05-10 04:20:13 +00:00
name = "notbit-git-faf0930";
2014-03-10 16:03:55 +00:00
src = fetchgit {
2014-05-10 04:20:13 +00:00
url = "git://github.com/bpeel/notbit";
rev = "faf09304bf723e75f3d98cca93cf45236ee9d6b6";
sha256 = "b229f87c4c5e901bfd8b13dffe31157126d98ed02118fff6553e8b58eb9ed030";
2014-03-10 16:03:55 +00: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;
};
}