diff options
author | Ben Sima <ben@bsima.me> | 2021-03-19 11:29:25 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-03-19 11:29:25 -0400 |
commit | ba26339b35f4ec5461f044b9ac08a7c2be4143f3 (patch) | |
tree | 0e36824e170a79233107b5abeee27734a53ccfa3 /Biz/Bild/Deps/gmni.nix | |
parent | de189c5897ca6c122ea9cae34f60f4065fc4437d (diff) |
Add bearssl, gmni, and gmnisrv
Eventually I'll just upstream these to nixpkgs-dev. I also want to make z into a
gemini-compatible zettlekasten. All in due time.
Diffstat (limited to 'Biz/Bild/Deps/gmni.nix')
-rw-r--r-- | Biz/Bild/Deps/gmni.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Biz/Bild/Deps/gmni.nix b/Biz/Bild/Deps/gmni.nix new file mode 100644 index 0000000..092638d --- /dev/null +++ b/Biz/Bild/Deps/gmni.nix @@ -0,0 +1,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; + }; +} |