Files
nixpkgs/pkgs/by-name/js/jstest-gtk/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

47 lines
1000 B
Nix

{
stdenv,
lib,
fetchFromGitLab,
cmake,
pkg-config,
gtkmm3,
libsigcxx,
xorg,
}:
stdenv.mkDerivation {
pname = "jstest-gtk";
version = "2018-07-10";
src = fetchFromGitLab {
owner = "jstest-gtk";
repo = "jstest-gtk";
rev = "62f6e2d7d44620e503149510c428df9e004c9f3b";
sha256 = "0icbbhrj5aqljhiavdy3hic60vp0zzfzyg0d6vpjaqkbzd5pv9d8";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
gtkmm3
libsigcxx
xorg.libX11
];
meta = with lib; {
description = "Simple joystick tester based on Gtk+";
longDescription = ''
It provides you with a list of attached joysticks, a way to display which
buttons and axis are pressed, a way to remap axis and buttons and a way
to calibrate your joystick.
'';
homepage = "https://jstest-gtk.gitlab.io/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ wucke13 ];
platforms = platforms.linux;
mainProgram = "jstest-gtk";
};
}