5aa4b19946
Refs: e6754980264fe927320d5ff2dbd24ca4fac9a160 1e9cc5b9844ef603fe160e9f671178f96200774f 793a2fe1e8bb886ca2096c5904e1193dc3268b6d c19cf65261639f749012454932a532aa7c681e4b f6544d618f30fae0bc4798c4387a8c7c9c047a7c
31 lines
697 B
Nix
31 lines
697 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
|
|
gettext, openssl
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "notbit";
|
|
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";
|
|
homepage = https://github.com/bpeel/notbit;
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ mog ];
|
|
broken = true;
|
|
};
|
|
}
|