mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
musescore: Switch to wrapQtAppsHook and stdenv.mkDerivation
The usage of libsForQt5's mkDerivation is deprecated.
This commit is contained in:
parent
85b756369f
commit
4416f5b78a
@ -1,8 +1,9 @@
|
|||||||
{ mkDerivation
|
{ stdenv
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, cmake
|
, cmake
|
||||||
|
, wrapQtAppsHook
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, ninja
|
, ninja
|
||||||
, alsa-lib
|
, alsa-lib
|
||||||
@ -30,7 +31,7 @@
|
|||||||
, nixosTests
|
, nixosTests
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "musescore";
|
pname = "musescore";
|
||||||
version = "4.1.0";
|
version = "4.1.0";
|
||||||
|
|
||||||
@ -60,6 +61,7 @@ mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
wrapQtAppsHook
|
||||||
cmake
|
cmake
|
||||||
pkg-config
|
pkg-config
|
||||||
ninja
|
ninja
|
||||||
|
Loading…
Reference in New Issue
Block a user