summaryrefslogtreecommitdiff
path: root/Biz/Bild/Deps/gmni.nix
blob: 14c88b9bc7f58e8f4a2dc322bea6154f5f122b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchgit, pkg-config, bearssl, scdoc}:

stdenv.mkDerivation rec {
  name = "gmni";
  version = "77b73efb";
  src = fetchgit {
    url = "https://git.sr.ht/~sircmpwn/gmni";
    rev = version;
    sha256 = "1wvnzyv7vyddcd39y6q5aflpnnsdl4k4y5aj5ssb7vgkld0h1b7r";
  };
  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ bearssl scdoc ];
  meta = with stdenv.lib; {
    description = "A Gemini client";
    homepage = "https://git.sr.ht/~sircmpwn/gmni";
    license = licenses.gpl3;
    maintainers = with maintainers; [ bsima ];
    platforms = platforms.all;
  };
}