mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
catppuccinifier-cli: init at 8.0.0
This commit is contained in:
parent
5fd8536a9a
commit
d876fbad65
1596
pkgs/by-name/ca/catppuccinifier-cli/Cargo.lock
generated
Normal file
1596
pkgs/by-name/ca/catppuccinifier-cli/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
34
pkgs/by-name/ca/catppuccinifier-cli/package.nix
Normal file
34
pkgs/by-name/ca/catppuccinifier-cli/package.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "catppuccinifier-cli";
|
||||
version = "8.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lighttigerXIV";
|
||||
repo = "catppuccinifier";
|
||||
rev = version;
|
||||
hash = "sha256-CEjdCr7QgyQw+1VmeEyt95R0HKE0lAKZHrwahaxgJoU=";
|
||||
};
|
||||
|
||||
sourceRoot = "${src.name}/src/catppuccinifier-cli";
|
||||
|
||||
cargoLock = {
|
||||
lockFile = ./Cargo.lock;
|
||||
outputHashes = {
|
||||
"catppuccinifier-rs-0.1.0" = "sha256-/lwc5cqLuCvGwcCiEHlYkbQZlS13z40OFVl26tpjsTQ=";
|
||||
};
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Apply catppuccin flavors to your wallpapers";
|
||||
homepage = "https://github.com/lighttigerXIV/catppuccinifier";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "catppuccinifier-cli";
|
||||
maintainers = with lib.maintainers; [ aleksana isabelroses ];
|
||||
platforms = with lib.platforms; linux ++ windows;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user