summary refs log blame commit diff
path: root/pkgs/tools/misc/slop/default.nix
blob: 69fa8d694541ad824f6930210b870a1102c30cbf (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                 
                                                            

          

                         
                 
                  
 



                         
                                                                   

    
                                           
                                                                       
                                                 


                  
                    
                                
                                                                           

                                    
                                        

    
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
, glew, glm, libGLU, libGL, libX11, libXext, libXrender, icu
, cppcheck
}:

stdenv.mkDerivation rec {
  pname = "slop";
  version = "7.6";

  src = fetchFromGitHub {
    owner = "naelstrof";
    repo = "slop";
    rev = "v${version}";
    sha256 = "sha256-LdBQxw8K8WWSfm4E2QpK4GYTuYvI+FX5gLOouVFSU/U=";
  };

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ glew glm libGLU libGL libX11 libXext libXrender icu ]
                ++ lib.optional doCheck cppcheck;

  doCheck = false;

  meta = with lib; {
    inherit (src.meta) homepage;
    description = "Queries a selection from the user and prints to stdout";
    platforms = lib.platforms.linux;
    license = lib.licenses.gpl3Plus;
    maintainers = with maintainers; [ ];
  };
}