summary refs log blame commit diff
path: root/pkgs/applications/audio/tonelib-gfx/default.nix
blob: a0b3cf2879e6bacc285479c3729d95ce8cfa1e35 (plain) (tree)
1
2
3
4
5
6
7
8
9

        
          

                  
          
          
          
      




             



                         
                    

                  

                                                                          

    

                                                
                 
                    
            
            









                                        

    
                                       

                   


                                                                                       
 



                                                                                                      

                                                            

    
{ lib
, stdenv
, fetchurl
, autoPatchelfHook
, dpkg
, alsa-lib
, freetype
, libglvnd
, curl
, libXcursor
, libXinerama
, libXrandr
, libXrender
, libjack2
}:

stdenv.mkDerivation rec {
  pname = "tonelib-gfx";
  version = "4.7.5";

  src = fetchurl {
    url = "https://www.tonelib.net/download/220214/ToneLib-GFX-amd64.deb";
    hash = "sha256-GUSyarqG1V5O6ayAedeGqmOA+UABQDpAZ+dsorh7das=";
  };

  nativeBuildInputs = [ autoPatchelfHook dpkg ];

  buildInputs = [
    stdenv.cc.cc.lib
    alsa-lib
    freetype
    libglvnd
  ] ++ runtimeDependencies;

  runtimeDependencies = map lib.getLib [
    curl
    libXcursor
    libXinerama
    libXrandr
    libXrender
    libjack2
  ];

  unpackCmd = "dpkg -x $curSrc source";

  installPhase = ''
    mv usr $out
    substituteInPlace $out/share/applications/ToneLib-GFX.desktop --replace /usr/ $out/
 '';

  meta = with lib; {
    description = "Tonelib GFX is an amp and effects modeling software for electric guitar and bass.";
    homepage = "https://tonelib.net/";
    license = licenses.unfree;
    maintainers = with maintainers; [ dan4ik605743 orivej ];
    platforms = [ "x86_64-linux" ];
  };
}