colorpanes: init at 3.0.1

main
papojari 2 years ago
parent 5bc0350e7c
commit 4c05d15a08
No known key found for this signature in database
GPG Key ID: 5D98BEEC20C9695C
  1. 27
      pkgs/tools/misc/colorpanes/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 ];
};
}

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

Loading…
Cancel
Save