Merge pull request #112017 from fortuneteller2k/add-flavours

flavours: init at 0.3.5
This commit is contained in:
Sandro 2021-02-05 18:54:56 +01:00 committed by GitHub
commit 72bfbe970b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "flavours";
version = "0.3.5";
src = fetchFromGitHub {
owner = "Misterio77";
repo = pname;
rev = "v${version}";
sha256 = "1lvbq026ap02f22mv45s904a0f81dr2f07j6bq0wnwl5wd5w0wpj";
};
cargoSha256 = "0wgi65k180mq1q6j4nma0wpfdvl67im5v5gmhzv1ap6xg3bicdg1";
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 ];
};
}

View File

@ -1261,6 +1261,8 @@ in
fitnesstrax = callPackage ../applications/misc/fitnesstrax/default.nix { };
flavours = callPackage ../applications/misc/flavours { };
flood = nodePackages.flood;
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };