We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db6973f + 6995a81 commit f4a388cCopy full SHA for f4a388c
pkgs/by-name/ir/iro/package.nix
@@ -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