python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / interception-tools / caps2esc.nix
blob933a731828fb0855ee7162ee2bcbaec2f359c5c8
1 { lib, stdenv, fetchFromGitLab, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "caps2esc";
5   version = "0.3.2";
7   src = fetchFromGitLab {
8     group = "interception";
9     owner = "linux/plugins";
10     repo = pname;
11     rev = "v${version}";
12     sha256 = "sha256-gPFElAixiDTTwcl2XKM7MbTkpRrg8ToO5K7H8kz3DHk=";
13   };
15   nativeBuildInputs = [ cmake ];
17   meta = with lib; {
18     homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";
19     description = "Transforming the most useless key ever into the most useful one";
20     license = licenses.mit;
21     maintainers = [ maintainers.vyp ];
22     platforms = platforms.linux;
23   };