2021-04-15 15:58:14 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, guile
|
|
|
|
, pkg-config
|
|
|
|
}:
|
2014-10-31 01:25:45 +00:00
|
|
|
|
2021-04-15 15:58:14 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "guile-opengl";
|
2017-09-24 12:03:56 +01:00
|
|
|
version = "0.1.0";
|
2014-10-31 01:25:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-15 15:58:14 +01:00
|
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
|
|
|
hash = "sha256-NdK5UwUszX5B0kKbynG8oD2PCKIGpZ1x91ktBDvpDo8=";
|
2014-10-31 01:25:45 +00:00
|
|
|
};
|
|
|
|
|
2021-04-15 15:58:14 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
guile
|
|
|
|
];
|
2017-09-24 12:03:56 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = "https://www.gnu.org/software/guile-opengl/";
|
2021-04-15 15:58:14 +01:00
|
|
|
description = "Guile bindings for the OpenGL graphics API";
|
2017-09-24 12:03:56 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ vyp ];
|
2021-03-11 17:36:00 +00:00
|
|
|
platforms = platforms.unix;
|
2017-09-24 12:03:56 +01:00
|
|
|
};
|
2014-10-31 01:25:45 +00:00
|
|
|
}
|