-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14cf716
commit c5db6ea
Showing
1 changed file
with
4 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,15 +12,15 @@ rustPlatform.buildRustPackage rec { | |
src = fetchFromGitHub { | ||
owner = "nikolaizombie1"; | ||
repo = "color_scheme_generator"; | ||
rev = "v${version}"; | ||
tag = "v${version}"; | ||
hash = "sha256-tSoM6MP58vOoKRMQjNq8nKMiVTfS9N/mckchAPcUM0g="; | ||
}; | ||
|
||
cargoHash = "sha256-A8ld2c8ZcqaZN29Fz085FQy8UpugIDMOKT01r+SfCcc="; | ||
|
||
nativeBuildInputs = [ perl ]; | ||
|
||
meta = with lib; { | ||
meta = { | ||
description = "Quickly generate color schemes for waybar from an image."; | ||
longDescription = '' | ||
color_scheme_generator is a command line utility used to analyze images and generate color themes from them given a path to an image. | ||
|
@@ -31,14 +31,7 @@ rustPlatform.buildRustPackage rec { | |
''; | ||
homepage = "https://github.com/nikolaizombie1/color_scheme_generator"; | ||
license = licenses.gpl3; | ||
maintainers = [ | ||
{ | ||
name = "Fabio J. Matos Nieves"; | ||
email = "[email protected]"; | ||
githubId = "70602908"; | ||
github = "nikolaizombie1"; | ||
} | ||
]; | ||
license = with lib.licenses; [ gpl3 ]; | ||
maintainers = with lib.maintainers; [ nikolaizombie1 ]; | ||
}; | ||
} |