Files
nixpkgs/pkgs/by-name/ge/geopard/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

63 lines
1.1 KiB
Nix

{
stdenv,
cargo,
rustc,
fetchFromGitHub,
libadwaita,
rustPlatform,
pkg-config,
lib,
wrapGAppsHook4,
meson,
ninja,
desktop-file-utils,
blueprint-compiler,
glib-networking,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "geopard";
version = "1.6.0";
src = fetchFromGitHub {
owner = "ranfdev";
repo = "geopard";
rev = "v${finalAttrs.version}";
hash = "sha256-etx8YPEFGSNyiSLpTNIXTZZiLSgAntQsM93On7dPGI0=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit (finalAttrs) src;
hash = "sha256-FHYWpMmJvcHuAHr9fFKl1qIhJb32NJEA/0j3R6/mVgQ=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
wrapGAppsHook4
blueprint-compiler
desktop-file-utils
cargo
rustc
rustPlatform.cargoSetupHook
];
buildInputs = [
libadwaita
glib-networking
];
meta = {
homepage = "https://github.com/ranfdev/Geopard";
description = "Colorful, adaptive gemini browser";
maintainers = with lib.maintainers; [
jfvillablanca
aleksana
];
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
mainProgram = "geopard";
};
})