wips of many gnome packages
This commit is contained in:
27
pkgs_wip/colordle.nix
Normal file
27
pkgs_wip/colordle.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitLab,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hexcolordle-gtk";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "Krafting";
|
||||
repo = "hexcolordle-gtk";
|
||||
rev = version;
|
||||
hash = "sha256-oPGC0D7sh+H25qg2ttRtIMjI+HjZImRieWmYw+I6sQE=";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A game where you need to find a color by guessing its hex code";
|
||||
homepage = "https://gitlab.com/Krafting/hexcolordle-gtk";
|
||||
changelog = "https://gitlab.com/Krafting/hexcolordle-gtk/-/blob/${src.rev}/NEWS";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
mainProgram = "hexcolordle-gtk";
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user