summary refs log blame commit diff
path: root/pkgs/applications/audio/ptcollab/default.nix
blob: 36495986201f11ba21521d7e8eda510ef2a71776 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
              
             








                     
                      




                         
                                                                    





                                                  
                    








                                                                                      
{ mkDerivation
, lib, stdenv
, fetchFromGitHub
, qmake
, qtbase
, qtmultimedia
, libvorbis
}:

mkDerivation rec {
  pname = "ptcollab";
  version = "0.3.5.1";

  src = fetchFromGitHub {
    owner = "yuxshao";
    repo = "ptcollab";
    rev = "v${version}";
    sha256 = "1ahfxjm1chz8k65rs7rgn4s2bgippq58fjcxl8fr21pzn718wqf1";
  };

  nativeBuildInputs = [ qmake ];

  buildInputs = [ qtbase qtmultimedia libvorbis ];

  meta = with 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;
  };
}