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

24 lines
717 B
Nix
Raw Normal View History

2021-02-05 12:58:42 +01:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "flavours";
2021-03-02 11:59:53 +01:00
version = "0.3.6";
2021-02-05 12:58:42 +01:00
src = fetchFromGitHub {
owner = "Misterio77";
repo = pname;
rev = "v${version}";
2021-03-02 11:59:53 +01:00
sha256 = "0nys1sh4qwda1ql6aq07bhyvhjp5zf0qm98kr4kf2fmr87ddc12q";
2021-02-05 12:58:42 +01:00
};
2021-03-02 11:59:53 +01:00
cargoSha256 = "0bmmxiv8bd09kgxmhmynslfscsx2aml1m1glvid3inaipylcq45h";
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 ];
};
}