mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
ptcollab: 0.6.4.5 -> 0.6.4.6
This commit is contained in:
parent
ab37fd7f9d
commit
79d5144d16
@ -3,28 +3,38 @@
|
|||||||
, stdenv
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
, qmake
|
|
||||||
, pkg-config
|
|
||||||
, qtbase
|
|
||||||
, qtmultimedia
|
|
||||||
, libvorbis
|
, libvorbis
|
||||||
|
, pkg-config
|
||||||
|
, qmake
|
||||||
|
, qtbase
|
||||||
|
, qttools
|
||||||
|
, qtmultimedia
|
||||||
, rtmidi
|
, rtmidi
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "ptcollab";
|
pname = "ptcollab";
|
||||||
version = "0.6.4.5";
|
version = "0.6.4.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "yuxshao";
|
owner = "yuxshao";
|
||||||
repo = "ptcollab";
|
repo = "ptcollab";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-O7CNPMS0eRcqt2xAtyEFyLSV8U2xbxuV1DpBxZAFwQs=";
|
hash = "sha256-G0QQV0mvrrBAC2LSy45/NnEbHHA8/E0SZKJXvuVidRE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake pkg-config ];
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
qmake
|
||||||
|
qttools
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [ qtbase qtmultimedia libvorbis rtmidi ];
|
buildInputs = [
|
||||||
|
libvorbis
|
||||||
|
qtbase
|
||||||
|
qtmultimedia
|
||||||
|
rtmidi
|
||||||
|
];
|
||||||
|
|
||||||
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
||||||
# Move appbundles to Applications before wrapping happens
|
# Move appbundles to Applications before wrapping happens
|
||||||
|
Loading…
Reference in New Issue
Block a user