mpc-qt: 18.08 -> 2019-06-09

- update to the latest commit in git repository
- use mkDerivation for qt applications
- original repo disappeared from github; use the one from gitlab
gstqt5
José Romildo Malaquias 2020-04-16 14:55:41 -03:00 committed by Jon
parent 8d428ac33c
commit 3b8a98d639
1 changed files with 8 additions and 8 deletions

View File

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, pkgconfig, qmake, qtx11extras, qttools, mpv }: { stdenv, mkDerivation, fetchFromGitLab, pkgconfig, qmake, qtx11extras, qttools, mpv }:
stdenv.mkDerivation rec { mkDerivation rec {
pname = "mpc-qt"; pname = "mpc-qt";
version = "18.08"; version = "2019-06-09";
src = fetchFromGitHub { src = fetchFromGitLab {
owner = "cmdrkotori"; owner = "mpc-qt";
repo = "mpc-qt"; repo = "mpc-qt";
rev = "v${version}"; rev = "2abe6e7fc643068d50522468fe75d614861555ad";
sha256 = "1rxlkg3vsrapazdlb1i6c5a1vvf2114bsqwzcm3n2wc5c93yqsna"; sha256 = "1cis8dl9pm91mpnp696zvwsfp96gkwr8jgs45anbwd7ldw78w4x5";
}; };
nativeBuildInputs = [ pkgconfig qmake qttools ]; nativeBuildInputs = [ pkgconfig qmake qttools ];
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Media Player Classic Qute Theater"; description = "Media Player Classic Qute Theater";
homepage = "https://github.com/cmdrkotori/mpc-qt"; homepage = "https://gitlab.com/mpc-qt/mpc-qt";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ romildo ]; maintainers = with maintainers; [ romildo ];