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
55 lines
855 B
Nix
55 lines
855 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
glew,
|
|
glm,
|
|
libGLU,
|
|
libGL,
|
|
libX11,
|
|
libXext,
|
|
libXrender,
|
|
icu74,
|
|
libSM,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "slop";
|
|
version = "7.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "naelstrof";
|
|
repo = "slop";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-oUvzkIGrUTLVLR9Jf//Wh7AmnaNS2JLC3vXWg+w5W6g=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
glew
|
|
glm
|
|
libGLU
|
|
libGL
|
|
libX11
|
|
libXext
|
|
libXrender
|
|
icu74
|
|
libSM
|
|
];
|
|
|
|
meta = {
|
|
inherit (finalAttrs.src.meta) homepage;
|
|
description = "Queries for a selection from the user and prints the region to stdout";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
mainProgram = "slop";
|
|
};
|
|
})
|