nixpkgs/pkgs/applications/misc/flavours/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, installShellFiles }:
2021-02-05 12:58:42 +01:00
rustPlatform.buildRustPackage rec {
pname = "flavours";
2021-10-29 16:47:59 +02:00
version = "0.5.1";
2021-02-05 12:58:42 +01:00
src = fetchFromGitHub {
owner = "Misterio77";
repo = pname;
rev = "v${version}";
2021-10-29 16:47:59 +02:00
sha256 = "sha256-77nSz3J/9TsptpSHRFYY8mZAvn+o35gro2OwQkGzEC0=";
2021-02-05 12:58:42 +01:00
};
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
2021-10-29 16:47:59 +02:00
cargoSha256 = "sha256-UukLWMd8+wq5Y0dtePH312c1Nm4ztXPsoPHPN0nUb1w=";
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd flavours \
--zsh <($out/bin/flavours --completions zsh) \
--fish <($out/bin/flavours --completions fish) \
--bash <($out/bin/flavours --completions bash)
'';
2021-02-05 12:58:42 +01:00
meta = with lib; {
description = "An 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; [ fortuneteller2k ];
};
}