From ad5bc34a23eeb3932ac18e0497c8eb7f8dda4ec6 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sun, 25 Oct 2020 22:47:00 +0100 Subject: Add agate@1.2.2 --- pkgs/agate/default.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/agate/default.nix (limited to 'pkgs') diff --git a/pkgs/agate/default.nix b/pkgs/agate/default.nix new file mode 100644 index 0000000..eb5a47c --- /dev/null +++ b/pkgs/agate/default.nix @@ -0,0 +1,26 @@ +{ stdenv, rustPlatform, fetchFromGitHub }: +with stdenv.lib; + +let + pname = "agate"; + version = "1.2.2"; +in +rustPlatform.buildRustPackage { + inherit pname version; + + src = fetchFromGitHub { + owner = "mbrubeck"; + repo = pname; + rev = "v${version}"; + sha256 = "0kfr0xysxh830kxwfwmm9gzpl57b3dbkzrj21dnymwr117vjgjrx"; + }; + + cargoSha256 = "1ggwc1q998mp6pggxrmhhvnkyrdh6jv1w9jw0x0y2mbn26k54j0p"; + + meta = { + description = "Very simple server for the Gemini hypertext protocol"; + homepage = "https://github.com/mbrubeck/agate"; + license = "MIT/Apache-2.0"; + platforms = platforms.linux; + }; +} -- cgit 1.4.1