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

24 lines
715 B
Nix
Raw Normal View History

2021-02-05 11:58:42 +00:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "flavours";
2021-04-01 09:07:11 +01:00
version = "0.4.0";
2021-02-05 11:58:42 +00:00
src = fetchFromGitHub {
owner = "Misterio77";
repo = pname;
rev = "v${version}";
2021-04-01 09:07:11 +01:00
sha256 = "sha256-rDy859jg+F8XC4sJogIgdn1FoT8cf7S+KORt+7kboAc=";
2021-02-05 11:58:42 +00:00
};
2021-04-01 09:07:11 +01:00
cargoSha256 = "sha256-cAXiAPhHdxdd8pFQ0Gq7eHO2p/Dam53gDbE583UYY/k=";
2021-02-05 11:58:42 +00: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 ];
};
}