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

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

34 lines
660 B
Nix
Raw Normal View History

2021-04-03 11:46:54 +03:00
{ lib
, stdenv
, fetchFromSourcehut
, SDL2
}:
stdenv.mkDerivation rec {
pname = "clickclack";
2022-02-12 23:38:03 +03:00
version = "0.2.2";
2021-04-03 11:46:54 +03:00
src = fetchFromSourcehut {
owner = "~proycon";
repo = "clickclack";
rev = version;
2022-02-12 23:38:03 +03:00
hash = "sha256-ABVfJRSzbQ6jIpON2g2wS52QsyNQVfW6+AhTvjkkf6s=";
2021-04-03 11:46:54 +03:00
};
buildInputs = [
SDL2
];
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = with lib; {
description = "A vibration/audio feedback tool to be used with virtual keyboards";
homepage = "https://git.sr.ht/~proycon/clickclack";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ dotlambda ];
};
}