mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, stdenv
|
|
, installShellFiles
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lutgen";
|
|
version = "0.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ozwaldorf";
|
|
repo = "lutgen-rs";
|
|
rev = "v${version}";
|
|
hash = "sha256-Rj6y8ZiNWQsGn8B+iNMZvuE/U2703oYbJW+ZSdV3fl4=";
|
|
};
|
|
|
|
cargoHash = "sha256-7yNr6Zc5A7rj6sUnplo2gB2xNUgZ3TLwUuBEfVKZfIQ=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd lutgen \
|
|
--bash <($out/bin/lutgen completions bash) \
|
|
--fish <($out/bin/lutgen completions fish) \
|
|
--zsh <($out/bin/lutgen completions zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Blazingly fast interpolated LUT generator and applicator for arbitrary and popular color palettes";
|
|
homepage = "https://github.com/ozwaldorf/lutgen-rs";
|
|
maintainers = with maintainers; [ zzzsy donovanglover ];
|
|
mainProgram = "lutgen";
|
|
license = licenses.mit;
|
|
};
|
|
}
|