9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, bison, flex, bluez, pkg-config, gtk2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cwiid-${version}-git";
|
|
version = "2010-02-21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "abstrakraft";
|
|
repo = "cwiid";
|
|
rev = "fadf11e89b579bcc0336a0692ac15c93785f3f82";
|
|
sha256 = "0qdb0x757k76nfj32xc2nrrdqd9jlwgg63vfn02l2iznnzahxp0h";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
configureFlags = [ "--without-python" ];
|
|
|
|
prePatch = ''
|
|
sed -i -e '/$(LDCONFIG)/d' common/include/lib.mak.in
|
|
'';
|
|
|
|
buildInputs = [ bison flex bluez gtk2 ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
NIX_LDFLAGS = "-lbluetooth";
|
|
|
|
postInstall = ''
|
|
# Some programs (for example, cabal-install) have problems with the double 0
|
|
sed -i -e "s/0.6.00/0.6.0/" $out/lib/pkgconfig/cwiid.pc
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Linux Nintendo Wiimote interface";
|
|
homepage = "http://cwiid.org";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ bennofs ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|