about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/browsers/gmni/default.nix
blob: 4bc4e360120fdee64fc5ecd962ca7d8a2fd552de (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
{ stdenv, lib, fetchFromSourcehut, bearssl, scdoc }:

stdenv.mkDerivation rec {
  pname = "gmni";
  version = "1.0";

  src = fetchFromSourcehut {
    owner = "~sircmpwn";
    repo = "gmni";
    rev = version;
    sha256 = "sha256-3MFNAI/SfFigNfitfFs3o9kkz7JeEflMHiH7iJpLfi4=";
  };

  nativeBuildInputs = [ scdoc ];
  buildInputs = [ bearssl ];

  meta = with lib; {
    description = "A Gemini client";
    homepage = "https://git.sr.ht/~sircmpwn/gmni";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ bsima jb55 ];
    platforms = platforms.linux;
  };
}