37 lines
945 B
Nix
37 lines
945 B
Nix
{ stdenv, fetchurl, ninja, meson, pkgconfig, vala, gobjectIntrospection
|
|
, glib, libgudev, libevdev, gnome3 }:
|
|
|
|
let
|
|
version = "0.2.1";
|
|
pname = "libmanette";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "${pname}-${version}";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "14vqz30p4693yy3yxs0gj858x25sl2kawib1g9lj8g5frgl0hd82";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig vala gobjectIntrospection ];
|
|
buildInputs = [ glib libgudev libevdev ];
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A simple GObject game controller library";
|
|
homepage = https://wiki.gnome.org/Apps/Builder;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = gnome3.maintainers;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|