mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
parent
ba929a0252
commit
0abe9b54d8
25
pkgs/applications/misc/kbt/default.nix
Normal file
25
pkgs/applications/misc/kbt/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "kbt";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bloznelis";
|
||||
repo = "kbt";
|
||||
rev = version;
|
||||
hash = "sha256-gZUZB7cbaYlDs3PfRhkRlyJ6FBqtUAANL/K8Q/Dk8Zc=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-BcUxrZKJEgYgGQqgi9l6xcmwyTRNr9C2WWOgaFB5XSw=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Keyboard tester in terminal";
|
||||
homepage = "https://github.com/bloznelis/kbt";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
@ -32578,6 +32578,8 @@ with pkgs;
|
||||
|
||||
kapow = libsForQt5.callPackage ../applications/misc/kapow { };
|
||||
|
||||
kbt = callPackage ../applications/misc/kbt { };
|
||||
|
||||
kchmviewer = libsForQt5.callPackage ../applications/misc/kchmviewer { };
|
||||
|
||||
kappanhang = callPackage ../applications/radio/kappanhang { };
|
||||
|
Loading…
Reference in New Issue
Block a user