Files
nixpkgs/pkgs/by-name/co/collector/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

66 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
appstream-glib,
desktop-file-utils,
libadwaita,
meson,
ninja,
pkg-config,
wrapGAppsHook4,
gtk4,
python3,
gettext,
cmake,
gobject-introspection,
unstableGitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "collector";
version = "0-unstable-2024-11-11";
src = fetchFromGitHub {
owner = "mijorus";
repo = "collector";
rev = "54cf58e79066284e6c62fdabca2a4b444131ee09";
hash = "sha256-V+FMpmI4vcqfBwgxnSxRm1RJ8If19yvSKAqrf+mI604=";
};
nativeBuildInputs = [
meson
pkg-config
ninja
gettext
cmake
desktop-file-utils
appstream-glib
wrapGAppsHook4
];
buildInputs = [
gtk4
libadwaita
gobject-introspection
(python3.withPackages (
ps: with ps; [
pillow
requests
pygobject3
]
))
];
passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
meta = {
description = "Drag multiple files and folders on to Collection window, drop them anywhere";
mainProgram = "collector";
homepage = "https://github.com/mijorus/collector";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ CaptainJawZ ];
};
})