commit
						ccd915ca27
					
				@ -42,6 +42,7 @@ in
 | 
			
		||||
      pkgs.lxqt.liblxqt
 | 
			
		||||
      pkgs.lxqt.libqtxdg
 | 
			
		||||
      pkgs.lxqt.libsysstat
 | 
			
		||||
      pkgs.lxqt.lximage-qt
 | 
			
		||||
      pkgs.lxqt.lxqt-about
 | 
			
		||||
      pkgs.lxqt.lxqt-admin
 | 
			
		||||
      pkgs.lxqt.lxqt-common
 | 
			
		||||
 | 
			
		||||
@ -58,6 +58,7 @@ let
 | 
			
		||||
    qterminal = callPackage ./optional/qterminal { };
 | 
			
		||||
    compton-conf = callPackage ./optional/compton-conf { };
 | 
			
		||||
    obconf-qt = callPackage ./optional/obconf-qt { };
 | 
			
		||||
    lximage-qt = callPackage ./optional/lximage-qt { };
 | 
			
		||||
   
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										43
									
								
								pkgs/desktops/lxqt/optional/lximage-qt/default.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								pkgs/desktops/lxqt/optional/lximage-qt/default.nix
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,43 @@
 | 
			
		||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, xorg, lxqt,
 | 
			
		||||
 libfm, menu-cache, libexif }:
 | 
			
		||||
 | 
			
		||||
stdenv.mkDerivation rec {
 | 
			
		||||
  name = "${pname}-${version}";
 | 
			
		||||
  pname = "lximage-qt";
 | 
			
		||||
  version = "0.5.0";
 | 
			
		||||
 | 
			
		||||
  srcs = fetchFromGitHub {
 | 
			
		||||
    owner = "lxde";
 | 
			
		||||
    repo = pname;
 | 
			
		||||
    rev = version;
 | 
			
		||||
    sha256 = "0c5s0c2y73hp7mcxwg31bpn0kmjyhv519d0dxzp3na56n0xk9vl0";
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  nativeBuildInputs = [ cmake pkgconfig ];
 | 
			
		||||
 | 
			
		||||
  buildInputs = [
 | 
			
		||||
    qt5.qtbase
 | 
			
		||||
    qt5.qttools
 | 
			
		||||
    qt5.qtx11extras
 | 
			
		||||
    qt5.qtsvg
 | 
			
		||||
    kde5.kwindowsystem
 | 
			
		||||
    lxqt.liblxqt
 | 
			
		||||
    lxqt.libqtxdg
 | 
			
		||||
    lxqt.libfm-qt
 | 
			
		||||
    xorg.libpthreadstubs
 | 
			
		||||
    xorg.libXdmcp
 | 
			
		||||
    libfm
 | 
			
		||||
    menu-cache
 | 
			
		||||
    libexif
 | 
			
		||||
  ];
 | 
			
		||||
 | 
			
		||||
  cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
 | 
			
		||||
 | 
			
		||||
  meta = with stdenv.lib; {
 | 
			
		||||
    description = "The image viewer and screenshot tool for lxqt";
 | 
			
		||||
    homepage = https://github.com/lxde/lximage-qt;
 | 
			
		||||
    license = licenses.gpl2;
 | 
			
		||||
    maintainers = with maintainers; [ romildo ];
 | 
			
		||||
    platforms = with platforms; unix;
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user