diff options
| author | OPNA2608 <christoph.neidahl@gmail.com> | 2021-06-16 10:52:00 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-06-16 13:06:59 +0000 |
| commit | 4f19c7a4ab93f36539b989ddbc794ef788d48a22 (patch) | |
| tree | 43665e6b227cb1fcdff1396aed4435ce8c3b0b4a | |
| parent | Merge pull request #127076 from NixOS/backport-127044-to-release-21.05 (diff) | |
| download | nixpkgs-4f19c7a4ab93f36539b989ddbc794ef788d48a22.tar.gz | |
ptcollab: 0.4.0 -> 0.4.1
(cherry picked from commit 7b3c26031b767b1d0bf7c908a112a77a80ec9914)
| -rw-r--r-- | pkgs/applications/audio/ptcollab/default.nix | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/applications/audio/ptcollab/default.nix b/pkgs/applications/audio/ptcollab/default.nix index f5752dd96f4a..c5b9f2b804e8 100644 --- a/pkgs/applications/audio/ptcollab/default.nix +++ b/pkgs/applications/audio/ptcollab/default.nix @@ -4,6 +4,7 @@ , fetchFromGitHub , nix-update-script , qmake +, pkg-config , qtbase , qtmultimedia , libvorbis @@ -12,21 +13,16 @@ mkDerivation rec { pname = "ptcollab"; - version = "0.4.0"; + version = "0.4.1"; src = fetchFromGitHub { owner = "yuxshao"; repo = "ptcollab"; rev = "v${version}"; - sha256 = "1yfnf47saxxj17x0vyxihr343kp7gz3fashzky79j80sqlm6ng85"; + sha256 = "sha256-98v9it9M5FXCsOpWvO10uKYmEH15v1FEH1hH73XHa7w="; }; - postPatch = '' - substituteInPlace src/editor.pro \ - --replace '/usr/include/rtmidi' '${rtmidi}/include/rtmidi' - ''; - - nativeBuildInputs = [ qmake ]; + nativeBuildInputs = [ qmake pkg-config ]; buildInputs = [ qtbase qtmultimedia libvorbis rtmidi ]; |
