0a20e8edf8
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 18.03 with grep in /nix/store/b23s2dr5x7zrhp4vgbh8nf2gajp8a44b-mpc-qt-18.03 - directory tree listing: https://gist.github.com/4792f038cb0905bcd3405765bb63b792
27 lines
733 B
Nix
27 lines
733 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, qmake, qtx11extras, qttools, mpv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mpc-qt-${version}";
|
|
version = "18.03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cmdrkotori";
|
|
repo = "mpc-qt";
|
|
rev = "v${version}";
|
|
sha256 = "0mhzdgjgv08cvnscbfndpr0s8ndbcf91b61zfqspa1qv4wlqd716";
|
|
};
|
|
|
|
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://github.com/cmdrkotori/mpc-qt;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|