summaryrefslogtreecommitdiff
path: root/Biz/Bild/Deps/gmni.nix
blob: 092638d4aebff21d1b288588a05364b085502712 (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 {
  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;
  };
}