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
56 lines
874 B
Nix
56 lines
874 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
puredata,
|
|
libGL,
|
|
libGLU,
|
|
glew,
|
|
libglut,
|
|
libv4l,
|
|
libX11,
|
|
file,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gem-unstable";
|
|
version = "2023-07-28";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "umlaeute";
|
|
repo = "Gem";
|
|
rev = "4ec12eef8716822c68f7c02a5a94668d2427037d";
|
|
hash = "sha256-Y/Z7oJdKGd7+aSk8eAN9qu4ss+BOvzaXWpWGjfJqGJ8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
file
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
puredata
|
|
libGL
|
|
libGLU
|
|
glew
|
|
libglut
|
|
libv4l
|
|
libX11
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Graphics Environment for Multimedia";
|
|
homepage = "http://puredata.info/downloads/gem";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [
|
|
raboof
|
|
carlthome
|
|
];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|