default.nix (938B)
1 { 2 lib, 3 stdenv, 4 rustPlatform, 5 fetchFromGitea, 6 pkg-config, 7 gtk4, 8 openssl, 9 wrapGAppsHook, 10 darwin, 11 }: 12 13 rustPlatform.buildRustPackage rec { 14 pname = "eva"; 15 version = "0.4.1"; 16 17 src = fetchFromGitea { 18 domain = "codeberg.org"; 19 owner = "jeang3nie"; 20 repo = "eva"; 21 tag = "v${version}"; 22 hash = "sha256-beCILpBqW8kHcLkW3q6LRRduDTMDwsqnXUEkZbX9hL4="; 23 }; 24 25 cargoPatches = [ ./cargo-lock.patch ]; 26 useFetchCargoVendor = true; 27 cargoHash = "sha256-e4P05TFjAaCQr5Pm5r4ZOK7y4eUxyQ/fp/m6DzjfHvo="; 28 29 nativeBuildInputs = [ 30 pkg-config 31 wrapGAppsHook 32 ]; 33 34 buildInputs = [ 35 gtk4 36 openssl 37 ] ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; 38 39 meta = { 40 description = "Gemini protocol browser written in Rust using the gtk+ toolkit"; 41 homepage = "https://codeberg.org/jeang3nie/eva"; 42 license = lib.licenses.gpl3; 43 maintainers = [ lib.maintainers.sikmir ]; 44 }; 45 }