Merge pull request #70673 from Profpatsch/ultrastar-creator-manager-wrapQtAppHook
ultrastar-creator/ultrastar-manager: wrapQtAppsHook
This commit is contained in:
commit
f05062e6a1
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub
|
{ lib, mkDerivation, fetchFromGitHub
|
||||||
, qmake, qtbase, pkgconfig, taglib, libbass, libbass_fx }:
|
, qmake, qtbase, pkgconfig, taglib, libbass, libbass_fx }:
|
||||||
|
|
||||||
# TODO: get rid of (unfree) libbass
|
# TODO: get rid of (unfree) libbass
|
||||||
@ -6,7 +6,7 @@
|
|||||||
# there’s a WIP branch here:
|
# there’s a WIP branch here:
|
||||||
# https://github.com/UltraStar-Deluxe/UltraStar-Creator/commits/BASS_removed
|
# https://github.com/UltraStar-Deluxe/UltraStar-Creator/commits/BASS_removed
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
mkDerivation {
|
||||||
pname = "ultrastar-creator";
|
pname = "ultrastar-creator";
|
||||||
version = "2019-04-23";
|
version = "2019-04-23";
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1rzz04l7s7pxj74xam0cxlq569lfpgig35kpbsplq531d4007pc9";
|
sha256 = "1rzz04l7s7pxj74xam0cxlq569lfpgig35kpbsplq531d4007pc9";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = with stdenv.lib; ''
|
postPatch = with lib; ''
|
||||||
# we don’t want prebuild binaries checked into version control!
|
# we don’t want prebuild binaries checked into version control!
|
||||||
rm -rf lib include
|
rm -rf lib include
|
||||||
sed -e "s|DESTDIR =.*$|DESTDIR = $out/bin|" \
|
sed -e "s|DESTDIR =.*$|DESTDIR = $out/bin|" \
|
||||||
@ -36,7 +36,7 @@ stdenv.mkDerivation {
|
|||||||
nativeBuildInputs = [ qmake pkgconfig ];
|
nativeBuildInputs = [ qmake pkgconfig ];
|
||||||
buildInputs = [ qtbase taglib libbass libbass_fx ];
|
buildInputs = [ qtbase taglib libbass libbass_fx ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Ultrastar karaoke song creation tool";
|
description = "Ultrastar karaoke song creation tool";
|
||||||
homepage = https://github.com/UltraStar-Deluxe/UltraStar-Creator;
|
homepage = https://github.com/UltraStar-Deluxe/UltraStar-Creator;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig, symlinkJoin, qmake, diffPlugins
|
{ lib, mkDerivation, fetchFromGitHub, pkgconfig, symlinkJoin, qmake, diffPlugins
|
||||||
, qtbase, qtmultimedia, taglib, libmediainfo, libzen, libbass }:
|
, qtbase, qtmultimedia, taglib, libmediainfo, libzen, libbass }:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -24,12 +24,12 @@ let
|
|||||||
repo = "UltraStar-Manager";
|
repo = "UltraStar-Manager";
|
||||||
inherit rev sha256;
|
inherit rev sha256;
|
||||||
};
|
};
|
||||||
in stdenv.mkDerivation {
|
in mkDerivation {
|
||||||
name = "${src.name}-patched";
|
name = "${src.name}-patched";
|
||||||
inherit src;
|
inherit src;
|
||||||
phases = [ "unpackPhase" "patchPhase" ];
|
phases = [ "unpackPhase" "patchPhase" ];
|
||||||
|
|
||||||
patchPhase = with stdenv.lib; ''
|
patchPhase = with lib; ''
|
||||||
# we don’t want prebuild binaries checked into version control!
|
# we don’t want prebuild binaries checked into version control!
|
||||||
rm -rf lib include
|
rm -rf lib include
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ let
|
|||||||
sed -e "s|QCore.*applicationDirPath()|QString(\"${path}\")|" -i "${file}"
|
sed -e "s|QCore.*applicationDirPath()|QString(\"${path}\")|" -i "${file}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPlugin = name: stdenv.mkDerivation {
|
buildPlugin = name: mkDerivation {
|
||||||
name = "ultrastar-manager-${name}-plugin-${version}";
|
name = "ultrastar-manager-${name}-plugin-${version}";
|
||||||
src = patchedSrc;
|
src = patchedSrc;
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ let
|
|||||||
paths = map buildPlugin plugins;
|
paths = map buildPlugin plugins;
|
||||||
};
|
};
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
in mkDerivation {
|
||||||
pname = "ultrastar-manager";
|
pname = "ultrastar-manager";
|
||||||
inherit version;
|
inherit version;
|
||||||
src = patchedSrc;
|
src = patchedSrc;
|
||||||
@ -112,7 +112,7 @@ in stdenv.mkDerivation {
|
|||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
inherit buildInputs;
|
inherit buildInputs;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Ultrastar karaoke song manager";
|
description = "Ultrastar karaoke song manager";
|
||||||
homepage = https://github.com/UltraStar-Deluxe/UltraStar-Manager;
|
homepage = https://github.com/UltraStar-Deluxe/UltraStar-Manager;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user