mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, mkDerivation, fetchFromGitHub, qmake, pkgconfig, udev
|
|
, qtmultimedia, qtscript, alsaLib, ola, libftdi1, libusb
|
|
, libsndfile, libmad
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
name = "qlcplus-${version}";
|
|
version = "4.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mcallegari";
|
|
repo = "qlcplus";
|
|
rev = "QLC+_${version}";
|
|
sha256 = "056ccgcz3rpbic2hqg4r1rq8svq7070j2h6l3hbb1p8h3qxwamzh";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake pkgconfig ];
|
|
buildInputs = [
|
|
udev qtmultimedia qtscript alsaLib ola libftdi1 libusb libsndfile libmad
|
|
];
|
|
|
|
qmakeFlags = [ "INSTALLROOT=$(out)" ];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
sed -i -e '/unix:!macx:INSTALLROOT += \/usr/d' \
|
|
-e "s@\$\$LIBSDIR/qt4/plugins@''${qtPluginPrefix}@" \
|
|
-e "s@/etc/udev/rules.d@''${out}/lib/udev/rules.d@" \
|
|
variables.pri
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A free and cross-platform software to control DMX or analog lighting systems like moving heads, dimmers, scanners etc.";
|
|
maintainers = [ maintainers.globin ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
homepage = "http://www.qlcplus.org/";
|
|
};
|
|
}
|