summaryrefslogtreecommitdiff
path: root/Biz/Bild/Deps/gmni.nix
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2021-04-23 11:15:17 -0400
committerBen Sima <ben@bsima.me>2021-11-26 13:47:34 -0500
commit5348f71ab93b399482bd3d57ee67651087686013 (patch)
tree9c08582a637d059a3784f4a1d5a9a97ed38bf71f /Biz/Bild/Deps/gmni.nix
parentd9bf241179ca2a425ae23672d22d21ff644940f3 (diff)
Switch to my nixpkgs fork
This way I can develop on nixpkgs directly, and directly send patches upstream, instead of trying to copy files back and forth and work with overlays. Of course with private stuff that I will never publish, I should use overlays, but that will probably not be very many things, I imagine.
Diffstat (limited to 'Biz/Bild/Deps/gmni.nix')
-rw-r--r--Biz/Bild/Deps/gmni.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/Biz/Bild/Deps/gmni.nix b/Biz/Bild/Deps/gmni.nix
deleted file mode 100644
index 14c88b9..0000000
--- a/Biz/Bild/Deps/gmni.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{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;
- };
-}