mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
28 lines
723 B
Nix
28 lines
723 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, qmake, qtx11extras, qttools, mpv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mpc-qt";
|
|
version = "18.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cmdrkotori";
|
|
repo = "mpc-qt";
|
|
rev = "v${version}";
|
|
sha256 = "1rxlkg3vsrapazdlb1i6c5a1vvf2114bsqwzcm3n2wc5c93yqsna";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|