python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / slop / default.nix
blobd0736761bada0539c4aeb3aa41bd9fc9273c2b3b
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , pkg-config
6 , glew
7 , glm
8 , libGLU
9 , libGL
10 , libX11
11 , libXext
12 , libXrender
13 , icu
14 , libSM
17 stdenv.mkDerivation rec {
18   pname = "slop";
19   version = "7.6";
21   src = fetchFromGitHub {
22     owner = "naelstrof";
23     repo = "slop";
24     rev = "v${version}";
25     sha256 = "sha256-LdBQxw8K8WWSfm4E2QpK4GYTuYvI+FX5gLOouVFSU/U=";
26   };
28   nativeBuildInputs = [
29     cmake
30     pkg-config
31   ];
33   buildInputs = [
34     glew
35     glm
36     libGLU
37     libGL
38     libX11
39     libXext
40     libXrender
41     icu
42     libSM
43   ];
45   meta = with lib; {
46     inherit (src.meta) homepage;
47     description = "Queries a selection from the user and prints to stdout";
48     platforms = lib.platforms.linux;
49     license = licenses.gpl3Plus;
50     maintainers = with maintainers; [ ];
51   };