Skip to content

Commit

Permalink
tombl: init at 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardotglobal committed Dec 26, 2024
1 parent ecf2bcd commit d3e5762
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/by-name/to/tombl/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "tombl";
version = "0.2.3";

src = fetchFromGitHub {
owner = "snyball";
repo = pname;
rev = "v${version}";
hash = "sha256-XHvAgJ8/+ZkBxwZpMgaDchr0hBa1FXAd/j1+HH9N6qw=";
};

cargoHash = "sha256-w6LiKSH0koxtWxieyob9e+u5kRdbJOda2mtD4FQBxq0=";

meta = {
description = "Easily query TOML files from bash";
homepage = "https://github.com/snyball/tombl";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ oskardotglobal ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18522,6 +18522,8 @@ with pkgs;
pinentry = pinentry-curses;
};

tombl = callPackage ../by-name/to/tombl/package.nix { };

serial-studio = libsForQt5.callPackage ../applications/misc/serial-studio { };

maphosts = callPackage ../tools/networking/maphosts { };
Expand Down

0 comments on commit d3e5762

Please sign in to comment.