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
53 lines
935 B
Nix
53 lines
935 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
gettext,
|
|
gtk2,
|
|
ncurses,
|
|
openssl,
|
|
pkg-config,
|
|
readline,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gftp";
|
|
version = "2.9.1b-unstable-2025-05-12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "masneyb";
|
|
repo = "gftp";
|
|
rev = "48114635f7b7b1f9a5eda985021ea53b10a7a030";
|
|
hash = "sha256-unTsd2xX8Y71ItE3gYHoxUPgViK/xhZdx0IQYvDPaEc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
gettext
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk2
|
|
ncurses
|
|
openssl
|
|
readline
|
|
];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/masneyb/gftp";
|
|
description = "GTK-based multithreaded FTP client for *nix-based machines";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.haylin ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "gftp";
|
|
};
|
|
})
|