about summary refs log tree commit diff
path: root/pkgs/tools/misc/slop/default.nix
blob: 36f40dca6cb147d88bf3edebb382cd657709899f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchFromGitHub, cmake, pkgconfig
, glew, glm, libGLU, libGL, libX11, libXext, libXrender, icu
, cppcheck
}:

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

  src = fetchFromGitHub {
    owner = "naelstrof";
    repo = "slop";
    rev = "v${version}";
    sha256 = "1k8xxb4rj2fylr4vj16yvsf73cyywliz9cy78pl4ibmi03jhg837";
  };

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

  doCheck = false;

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