Skip to content

Commit f4a388c

Browse files
authored
iro: init at 0-unstable-2024-10-24 (NixOS#354947)
2 parents db6973f + 6995a81 commit f4a388c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

pkgs/by-name/ir/iro/package.nix

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
lib,
3+
rustPlatform,
4+
fetchFromGitHub,
5+
}:
6+
7+
rustPlatform.buildRustPackage {
8+
pname = "iro";
9+
version = "0-unstable-2024-10-24";
10+
11+
src = fetchFromGitHub {
12+
owner = "kyoheiu";
13+
repo = "iro";
14+
rev = "ba4adc00e13da9086389357b0e92e608928a8b39";
15+
hash = "sha256-hGGrEGG1LyzfUCEnV7ahhRO0GrLk28xDWZEFqUHk1rE=";
16+
};
17+
18+
cargoHash = "sha256-ZP0YO+5juxFGc2rtvNBvknlTJBrtr8HiuN6/kKW1WNU=";
19+
20+
meta = {
21+
description = "CLI tool to convet Hex color code or RGB to color code, RGB, HSL and color name";
22+
homepage = "https://github.com/kyoheiu/iro";
23+
license = lib.licenses.mit;
24+
maintainers = with lib.maintainers; [ airrnot ];
25+
mainProgram = "iro";
26+
};
27+
}

0 commit comments

Comments
 (0)