about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/slop/default.nix
blob: a73dd8d3cbe70f6a6aaa7b7523aaf89c7ee264ee (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
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
, 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 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; [ ];
  };
}