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