Files
nixpkgs/pkgs/by-name/xw/xwinmosaic/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

50 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
gtk2,
cmake,
pkg-config,
libXdamage,
}:
stdenv.mkDerivation rec {
version = "0.4.2";
pname = "xwinmosaic";
src = fetchFromGitHub {
owner = "soulthreads";
repo = "xwinmosaic";
tag = "v${version}";
sha256 = "16qhrpgn84fz0q3nfvaz5sisc82zk6y7c0sbvbr69zfx5fwbs1rr";
};
patches = [
# Pull upstream fix for -fno-common toolchains like upstream gcc-10:
# https://github.com/soulthreads/xwinmosaic/pull/33
(fetchpatch {
name = "fno-common.patch";
url = "https://github.com/soulthreads/xwinmosaic/commit/a193a3f30850327066e5a93b29316cba2735e10d.patch";
sha256 = "0qpk802j5x6bsfvj6jqw1nz482jynwyk7yrrh4bsziwc53khm95q";
})
];
nativeBuildInputs = [
pkg-config
cmake
];
buildInputs = [
gtk2
libXdamage
];
meta = {
description = "X window switcher drawing a colourful grid";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.linux;
mainProgram = "xwinmosaic";
};
}