nixpkgs/pkgs/tools/system/kanata/default.nix

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

39 lines
1001 B
Nix
Raw Normal View History

{ fetchFromGitHub
2023-02-11 15:47:13 +00:00
, fetchpatch
, lib
, rustPlatform
, withCmd ? false
}:
rustPlatform.buildRustPackage rec {
pname = "kanata";
2023-02-11 15:47:13 +00:00
version = "1.2.0";
src = fetchFromGitHub {
owner = "jtroo";
repo = pname;
rev = "v${version}";
2023-02-11 15:47:13 +00:00
sha256 = "sha256-mQSbsJ+3mKoDMg0ewwR7UvXUq+5WA9aTPKWCaTz8nDE=";
};
2023-02-11 15:47:13 +00:00
cargoHash = "sha256-Pu96OGfnXNaIse/IcwFJWxGMlKOVhZ6DtvgXJkHh+Ao=";
cargoPatches = [
(fetchpatch {
name = "serialize-cfg-parsing-tests-for-1.2.0.patch";
url = "https://github.com/jtroo/kanata/commit/9ef1e80fbcb40402262e08bd9196d000f73f686d.patch";
hash = "sha256-/FhyaYx4usDjGoVfRktf9dtwjY4oXdMQKqxLz00/NPY=";
})
];
buildFeatures = lib.optional withCmd "cmd";
meta = with lib; {
2022-08-21 01:06:28 +00:00
description = "A tool to improve keyboard comfort and usability with advanced customization";
homepage = "https://github.com/jtroo/kanata";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ linj ];
platforms = platforms.linux;
};
}