f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
23 lines
687 B
Nix
23 lines
687 B
Nix
{ stdenv, fetchgit, autoreconfHook, libdrm, libX11, mesa_noglu, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kmscube-2017-03-19";
|
|
|
|
src = fetchgit {
|
|
url = git://anongit.freedesktop.org/mesa/kmscube;
|
|
rev = "b88a44d95eceaeebc5b9c6972ffcbfe9eca00aea";
|
|
sha256 = "029ccslfavz6jllqv980sr6mj9bdbr0kx7bi21ra0q9yl2vh0yca";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ libdrm libX11 mesa_noglu ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Example OpenGL app using KMS/GBM";
|
|
homepage = https://github.com/robclark/kmscube;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dezgeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|