2021-01-17 04:51:22 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
2019-11-10 17:44:34 +01:00
|
|
|
, glew, glm, libGLU, libGL, libX11, libXext, libXrender, icu
|
2018-04-23 10:30:57 +02:00
|
|
|
, cppcheck
|
|
|
|
}:
|
2015-03-04 18:41:01 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "slop";
|
2021-09-15 01:23:39 +02:00
|
|
|
version = "7.6";
|
2015-03-04 18:41:01 +01:00
|
|
|
|
2017-06-08 01:44:31 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "naelstrof";
|
|
|
|
repo = "slop";
|
|
|
|
rev = "v${version}";
|
2021-09-15 01:23:39 +02:00
|
|
|
sha256 = "sha256-LdBQxw8K8WWSfm4E2QpK4GYTuYvI+FX5gLOouVFSU/U=";
|
2015-03-04 18:41:01 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 04:51:22 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2019-11-10 17:44:34 +01:00
|
|
|
buildInputs = [ glew glm libGLU libGL libX11 libXext libXrender icu ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optional doCheck cppcheck;
|
2015-03-04 18:41:01 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-06-08 01:44:31 +02:00
|
|
|
inherit (src.meta) homepage;
|
2015-03-04 18:41:01 +01:00
|
|
|
description = "Queries a selection from the user and prints to stdout";
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
license = lib.licenses.gpl3Plus;
|
2021-06-15 13:46:24 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-03-04 18:41:01 +01:00
|
|
|
};
|
|
|
|
}
|