2023-10-19 13:55:26 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-08-20 17:08:02 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
|
|
|
, puredata
|
|
|
|
, libGL
|
|
|
|
, libGLU
|
|
|
|
, glew
|
2024-07-27 06:49:29 +00:00
|
|
|
, libglut
|
2020-08-20 17:08:02 +00:00
|
|
|
, libv4l
|
|
|
|
, libX11
|
|
|
|
, file
|
2023-10-19 13:55:26 +00:00
|
|
|
}:
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gem-unstable";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "2023-07-28";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-10-19 13:55:26 +00:00
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
owner = "umlaeute";
|
|
|
|
repo = "Gem";
|
2023-10-19 13:55:26 +00:00
|
|
|
rev = "4ec12eef8716822c68f7c02a5a94668d2427037d";
|
|
|
|
hash = "sha256-Y/Z7oJdKGd7+aSk8eAN9qu4ss+BOvzaXWpWGjfJqGJ8=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
file
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
puredata
|
|
|
|
libGL
|
|
|
|
libGLU
|
|
|
|
glew
|
2024-07-27 06:49:29 +00:00
|
|
|
libglut
|
2020-08-20 17:08:02 +00:00
|
|
|
libv4l
|
|
|
|
libX11
|
|
|
|
];
|
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
meta = with lib; {
|
2020-08-20 17:08:02 +00:00
|
|
|
description = "Graphics Environment for Multimedia";
|
|
|
|
homepage = "http://puredata.info/downloads/gem";
|
2023-10-19 13:55:26 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ raboof carlthome ];
|
|
|
|
platforms = platforms.linux;
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
}
|