nixpkgs/pkgs/applications/video/mpc-qt/default.nix

36 lines
1,019 B
Nix
Raw Normal View History

{ lib, stdenv, mkDerivation, fetchFromGitLab, fetchpatch, pkg-config, qmake, qtx11extras, qttools, mpv }:
2018-02-28 14:20:52 +00:00
mkDerivation rec {
pname = "mpc-qt";
version = "2019-06-09";
2018-02-28 14:20:52 +00:00
src = fetchFromGitLab {
owner = "mpc-qt";
2018-02-28 14:20:52 +00:00
repo = "mpc-qt";
rev = "2abe6e7fc643068d50522468fe75d614861555ad";
sha256 = "1cis8dl9pm91mpnp696zvwsfp96gkwr8jgs45anbwd7ldw78w4x5";
2018-02-28 14:20:52 +00:00
};
patches = [
(fetchpatch {
url = "https://gitlab.com/mpc-qt/mpc-qt/-/commit/02f2bc7a22e863a89ba322b9acb61cf1aef23ba0.diff";
sha256 = "0khld55i194zgi18d0wch5459lfzzkbfdbl1im8akvq8ks5xijis";
})
];
nativeBuildInputs = [ pkg-config qmake qttools ];
2018-02-28 14:20:52 +00:00
buildInputs = [ mpv qtx11extras ];
qmakeFlags = [ "QMAKE_LUPDATE=${qttools.dev}/bin/lupdate" ];
meta = with lib; {
2018-02-28 14:20:52 +00:00
description = "Media Player Classic Qute Theater";
homepage = "https://gitlab.com/mpc-qt/mpc-qt";
2018-02-28 14:20:52 +00:00
license = licenses.gpl2;
platforms = platforms.unix;
2021-01-03 23:08:01 +00:00
broken = stdenv.isDarwin;
2018-02-28 14:20:52 +00:00
maintainers = with maintainers; [ romildo ];
};
}