about summary refs log tree commit diff
path: root/pkgs/applications/misc/flavours/default.nix
blob: cc82a85113af6b648276b6f52dd1c034e6a2e8ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, installShellFiles }:

rustPlatform.buildRustPackage rec {
  pname = "flavours";
  version = "0.5.0";

  src = fetchFromGitHub {
    owner = "Misterio77";
    repo = pname;
    rev = "v${version}";
    sha256 = "1bgi6p7l0bh9k4vkwvngk7q19ynia0z1ninb1cq8qnwwpll6kbya";
  };

  buildInputs = [ ]
    ++ lib.optionals stdenv.isDarwin [ libiconv ];

  cargoSha256 = "sha256:07hwxhfcbqbwb3hz18w92h1lhdiwwy7abhwpimzx7syyavp4rmn4";

  nativeBuildInputs = [ installShellFiles ];

  postInstall = ''
    $out/bin/flavours --completions bash > flavours.bash
    $out/bin/flavours --completions fish > flavours.fish
    $out/bin/flavours --completions zsh > _flavours
    installShellCompletion --zsh _flavours --fish flavours.fish --bash flavours.bash
  '';

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