Skip to content

Commit

Permalink
iro: init at 0-unstable-2024-10-24 (NixOS#354947)
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium authored Dec 15, 2024
2 parents db6973f + 6995a81 commit f4a388c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/by-name/ir/iro/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:

rustPlatform.buildRustPackage {
pname = "iro";
version = "0-unstable-2024-10-24";

src = fetchFromGitHub {
owner = "kyoheiu";
repo = "iro";
rev = "ba4adc00e13da9086389357b0e92e608928a8b39";
hash = "sha256-hGGrEGG1LyzfUCEnV7ahhRO0GrLk28xDWZEFqUHk1rE=";
};

cargoHash = "sha256-ZP0YO+5juxFGc2rtvNBvknlTJBrtr8HiuN6/kKW1WNU=";

meta = {
description = "CLI tool to convet Hex color code or RGB to color code, RGB, HSL and color name";
homepage = "https://github.com/kyoheiu/iro";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ airrnot ];
mainProgram = "iro";
};
}

0 comments on commit f4a388c

Please sign in to comment.