depot/third_party/nixpkgs/pkgs/by-name/gu/guile-opengl/package.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

29 lines
596 B
Nix

{ lib
, stdenv
, fetchurl
, guile
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "guile-opengl";
version = "0.2.0";
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
hash = "sha256-uPCH7CiCPQmfuELDupQQS7BPqecIFmSHpHGYnhwXbGU=";
};
nativeBuildInputs = [
pkg-config
guile
];
meta = with lib; {
homepage = "https://www.gnu.org/software/guile-opengl/";
description = "Guile bindings for the OpenGL graphics API";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.unix;
};
}