2018-01-09 18:04:39 -08:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
|
|
|
|
gettext, openssl
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "notbit";
|
2018-01-09 18:04:39 -08:00
|
|
|
version = "2018-01-09";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bpeel";
|
|
|
|
repo = "notbit";
|
|
|
|
rev = "8b5d3d2da8ce54abae2536b4d97641d2c798cff3";
|
|
|
|
sha256 = "1623n0lvx42mamvb2vwin5i38hh0nxpxzmkr5188ss2x7m20lmii";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ openssl gettext ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A minimal Bitmessage client";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/bpeel/notbit";
|
2018-01-09 18:04:39 -08:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ mog ];
|
2019-10-07 08:20:23 -07:00
|
|
|
broken = true;
|
2018-01-09 18:04:39 -08:00
|
|
|
};
|
|
|
|
}
|