mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, cmake, pkg-config, gettext
|
|
, gtk2, libcanberra, libnotify, pcre, sqlite, xorg
|
|
, harfbuzz
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgaminggear";
|
|
version = "0.15.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libgaminggear/${pname}-${version}.tar.bz2";
|
|
sha256 = "0jf5i1iv8j842imgiixbhwcr6qcwa93m27lzr6gb01ri5v35kggz";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "bin" ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config gettext ];
|
|
|
|
propagatedBuildInputs = [
|
|
gtk2 libcanberra libnotify pcre sqlite xorg.libXdmcp xorg.libpthreadstubs
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DINSTALL_CMAKE_MODULESDIR=lib/cmake"
|
|
"-DINSTALL_PKGCONFIGDIR=lib/pkgconfig"
|
|
"-DINSTALL_LIBDIR=lib"
|
|
];
|
|
|
|
# https://sourceforge.net/p/libgaminggear/discussion/general/thread/b43a776b3a/
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-I${harfbuzz.dev}/include/harfbuzz" ];
|
|
|
|
postFixup = ''
|
|
moveToOutput bin "$bin"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Provides functionality for gaming input devices";
|
|
homepage = "https://sourceforge.net/projects/libgaminggear/";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|