2020-04-16 18:55:41 +01:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitLab, pkgconfig, qmake, qtx11extras, qttools, mpv }:
|
2018-02-28 14:20:52 +00:00
|
|
|
|
2020-04-16 18:55:41 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mpc-qt";
|
2020-04-16 18:55:41 +01:00
|
|
|
version = "2019-06-09";
|
2018-02-28 14:20:52 +00:00
|
|
|
|
2020-04-16 18:55:41 +01:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "mpc-qt";
|
2018-02-28 14:20:52 +00:00
|
|
|
repo = "mpc-qt";
|
2020-04-16 18:55:41 +01:00
|
|
|
rev = "2abe6e7fc643068d50522468fe75d614861555ad";
|
|
|
|
sha256 = "1cis8dl9pm91mpnp696zvwsfp96gkwr8jgs45anbwd7ldw78w4x5";
|
2018-02-28 14:20:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig qmake qttools ];
|
|
|
|
|
|
|
|
buildInputs = [ mpv qtx11extras ];
|
|
|
|
|
|
|
|
qmakeFlags = [ "QMAKE_LUPDATE=${qttools.dev}/bin/lupdate" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Media Player Classic Qute Theater";
|
2020-04-16 18:55:41 +01:00
|
|
|
homepage = "https://gitlab.com/mpc-qt/mpc-qt";
|
2018-02-28 14:20:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|