nixpkgs/pkgs/tools/misc/slop/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
798 B
Nix
Raw Normal View History

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 {
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;
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;
maintainers = with maintainers; [ ];
2015-03-04 18:41:01 +01:00
};
}