1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

cwiid: reformat and turn off format hardening

This commit is contained in:
Robin Gloster 2016-02-09 01:22:40 +00:00
parent f39da3be76
commit 70e6a117fa

View file

@ -1,26 +1,34 @@
{ stdenv, autoreconfHook, fetchgit, bison, flex, bluez, pkgconfig, gtk }: { stdenv, autoreconfHook, fetchgit, bison, flex, bluez, pkgconfig, gtk }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "cwiid-2010-02-21-git"; name = "cwiid-2010-02-21-git";
src = fetchgit {
url = https://github.com/abstrakraft/cwiid; src = fetchgit {
sha256 = "6f5355d036dab017da713c49d3042011fa24fb732ed0d5ee338ab6f5ff400f06"; url = https://github.com/abstrakraft/cwiid;
rev = "fadf11e89b579bcc0336a0692ac15c93785f3f82"; sha256 = "6f5355d036dab017da713c49d3042011fa24fb732ed0d5ee338ab6f5ff400f06";
}; rev = "fadf11e89b579bcc0336a0692ac15c93785f3f82";
configureFlags = "--without-python"; };
prePatch = ''
sed -i -e '/$(LDCONFIG)/d' common/include/lib.mak.in hardening_format = false;
'';
buildInputs = [ autoreconfHook bison flex bluez pkgconfig gtk ]; configureFlags = "--without-python";
postInstall = ''
# Some programs (for example, cabal-install) have problems with the double 0 prePatch = ''
sed -i -e "s/0.6.00/0.6.0/" $out/lib/pkgconfig/cwiid.pc sed -i -e '/$(LDCONFIG)/d' common/include/lib.mak.in
''; '';
meta = {
description = "Linux Nintendo Wiimote interface"; buildInputs = [ autoreconfHook bison flex bluez pkgconfig gtk ];
homepage = http://cwiid.org;
license = stdenv.lib.licenses.gpl2Plus; postInstall = ''
maintainers = [ stdenv.lib.maintainers.bennofs ]; # Some programs (for example, cabal-install) have problems with the double 0
platforms = stdenv.lib.platforms.linux; sed -i -e "s/0.6.00/0.6.0/" $out/lib/pkgconfig/cwiid.pc
}; '';
meta = {
description = "Linux Nintendo Wiimote interface";
homepage = http://cwiid.org;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.bennofs ];
platforms = stdenv.lib.platforms.linux;
};
} }