nixpkgs/pkgs/by-name/ge/gem/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
847 B
Nix
Raw Normal View History

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