3b8a98d639
- update to the latest commit in git repository - use mkDerivation for qt applications - original repo disappeared from github; use the one from gitlab
28 lines
758 B
Nix
28 lines
758 B
Nix
{ stdenv, mkDerivation, fetchFromGitLab, pkgconfig, qmake, qtx11extras, qttools, mpv }:
|
|
|
|
mkDerivation rec {
|
|
pname = "mpc-qt";
|
|
version = "2019-06-09";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "mpc-qt";
|
|
repo = "mpc-qt";
|
|
rev = "2abe6e7fc643068d50522468fe75d614861555ad";
|
|
sha256 = "1cis8dl9pm91mpnp696zvwsfp96gkwr8jgs45anbwd7ldw78w4x5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig qmake qttools ];
|
|
|
|
buildInputs = [ mpv qtx11extras ];
|
|
|
|
qmakeFlags = [ "QMAKE_LUPDATE=${qttools.dev}/bin/lupdate" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Media Player Classic Qute Theater";
|
|
homepage = "https://gitlab.com/mpc-qt/mpc-qt";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|