aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorOPNA2608 <christoph.neidahl@gmail.com>2020-11-03 21:24:10 +0100
committerOPNA2608 <christoph.neidahl@gmail.com>2020-11-03 21:24:10 +0100
commitec38b50c6779e2c39f96f00d1f384464e71760cf (patch)
tree80fe65b4a8f0ab4b99483afda5bd5420e015b7e9 /pkgs/applications/audio
parentc05803df2da2a410575d1c2725a8fd1182c5ca72 (diff)
ptcollab: init at 0.3.4.1
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/ptcollab/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/audio/ptcollab/default.nix b/pkgs/applications/audio/ptcollab/default.nix
new file mode 100644
index 000000000000..85890d8e83bf
--- /dev/null
+++ b/pkgs/applications/audio/ptcollab/default.nix
@@ -0,0 +1,34 @@
+{ mkDerivation
+, stdenv
+, fetchFromGitHub
+, qmake
+, qtbase
+, qtmultimedia
+, libvorbis
+}:
+
+mkDerivation rec {
+ pname = "ptcollab";
+ version = "0.3.4.1";
+
+ src = fetchFromGitHub {
+ owner = "yuxshao";
+ repo = "ptcollab";
+ rev = "v${version}";
+ sha256 = "0rjyhxfad864w84n0bxyhc1jjxhzwwdx26r6psba2582g90cv024";
+ };
+
+ nativeBuildInputs = [ qmake ];
+
+ buildInputs = [ qtbase qtmultimedia libvorbis ];
+
+ meta = with stdenv.lib; {
+ description = "Experimental pxtone editor where you can collaborate with friends";
+ homepage = "https://yuxshao.github.io/ptcollab/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ OPNA2608 ];
+ platforms = platforms.all;
+ # Requires Qt5.15
+ broken = stdenv.hostPlatform.isDarwin;
+ };
+}