push sheeet
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

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "szip";
version = "2.1.1";
src = fetchurl {
url = "https://support.hdfgroup.org/ftp/lib-external/szip/${version}/src/szip-${version}.tar.gz";
sha256 = "04nlhkzzf1gihvrfbzc6rq4kc13p92ly39dzrb4y4jrd9y5rbvi1";
};
meta = {
description = "Compression library that can be used with the hdf5 library";
homepage = "https://www.hdfgroup.org/doc_resource/SZIP/";
license = lib.licenses.unfree;
};
}

View File

@@ -0,0 +1,61 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
glib,
cairo,
pango,
atk,
gdk-pixbuf,
gtk4,
wrapGAppsHook4,
}:
rustPlatform.buildRustPackage rec {
pname = "szyszka";
version = "3.0.0";
src = fetchFromGitHub {
owner = "qarmin";
repo = "szyszka";
rev = version;
hash = "sha256-LkXGKDFKaY+mg53ZEO4h2br/4eRle/QbSQJTVEMpAoY=";
};
cargoHash = "sha256-0VlhBd1GpmynNflssizg+Y9D8Hr40rT7OzOSP4AmhxY=";
nativeBuildInputs = [
pkg-config
wrapGAppsHook4
];
buildInputs = [
glib
cairo
pango
atk
gdk-pixbuf
gtk4
];
postInstall = ''
install -m 444 \
-D data/com.github.qarmin.szyszka.desktop \
-t $out/share/applications
install -m 444 \
-D data/com.github.qarmin.szyszka.metainfo.xml \
-t $out/share/metainfo
install -m 444 \
-D data/icons/com.github.qarmin.szyszka.svg \
-t $out/share/icons/hicolor/scalable/apps
'';
meta = with lib; {
description = "Simple but powerful and fast bulk file renamer";
homepage = "https://github.com/qarmin/szyszka";
license = licenses.mit;
maintainers = with maintainers; [ kranzes ];
mainProgram = "szyszka";
};
}