Merge pull request #177322 from papojari/colorpanes

colorpanes: init at 3.0.1
This commit is contained in:
Sandro 2022-06-20 15:22:39 +02:00 committed by GitHub
commit 28dc4cdb3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, rustPlatform, fetchFromGitea }:
rustPlatform.buildRustPackage rec {
pname = "colorpanes";
version = "3.0.1";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "papojari";
repo = pname;
rev = "v${version}";
sha256 = "qaOH+LXNDq+utwyI1yzHWNt25AvdAXCTAziGV9ElroU=";
};
cargoSha256 = "eJne4OmV4xHxntTb8HE+2ghX1hZLE3WQ3QqsjVm9E4M=";
postInstall = ''
ln -s $out/bin/colp $out/bin/colorpanes
'';
meta = with lib; {
description = "Panes in the 8 bright terminal colors with shadows of the respective darker color";
homepage = "https://codeberg.org/papojari/colorpanes";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ papojari ];
};
}

View file

@ -350,6 +350,8 @@ with pkgs;
colorz = callPackage ../tools/misc/colorz { };
colorpanes = callPackage ../tools/misc/colorpanes { };
colorpicker = callPackage ../tools/misc/colorpicker { };
comedilib = callPackage ../development/libraries/comedilib { };