summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/notbit/default.nix
blob: 370c4f8388704cb60999145e6da0b8bd2c1d5b74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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;
  };
}