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 a47aaf8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/by-name/to/tombl/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
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";
mainProgram = "tombl";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ oskardotglobal ];
};
}

0 comments on commit a47aaf8

Please sign in to comment.