mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "flavours";
|
|
version = "0.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Misterio77";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-SOsHvcfDdUpb0x5VZ1vZJnGaIiWWOPgnAwKYNXzfUfI=";
|
|
};
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
|
|
|
|
cargoHash = "sha256-aimPeGIE5jP0pdrqwnzUzBqW0jz9+kcfpLdCN0r30xU=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd flavours \
|
|
--zsh <($out/bin/flavours --completions zsh) \
|
|
--fish <($out/bin/flavours --completions fish) \
|
|
--bash <($out/bin/flavours --completions bash)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Easy to use base16 scheme manager/builder that integrates with any workflow";
|
|
homepage = "https://github.com/Misterio77/flavours";
|
|
changelog = "https://github.com/Misterio77/flavours/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ moni misterio77 ];
|
|
mainProgram = "flavours";
|
|
};
|
|
}
|