From d886f603ab960164e16fe858796b0d91cf08b489 Mon Sep 17 00:00:00 2001 From: danihek Date: Thu, 12 Dec 2024 21:20:21 +0100 Subject: [PATCH 1/2] maintainers: add danihek --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 80478f7b5985c..93ba3ed072186 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -4961,6 +4961,12 @@ githubId = 160084; name = "Daniel Sidhion"; }; + danihek = { + email = "danihek07@gmail.com"; + github = "danihek"; + githubId = 64467514; + name = "Daniel Krywult"; + }; daniyalsuri6 = { email = "daniyal.suri@gmail.com"; github = "daniyalsuri6"; From 64b5ea8e481a379b337ee0959f7e74d6c3e5d6e2 Mon Sep 17 00:00:00 2001 From: danihek Date: Thu, 12 Dec 2024 22:26:26 +0100 Subject: [PATCH 2/2] hellwal: init at 1.0.2 --- pkgs/by-name/he/hellwal/package.nix | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/he/hellwal/package.nix diff --git a/pkgs/by-name/he/hellwal/package.nix b/pkgs/by-name/he/hellwal/package.nix new file mode 100644 index 0000000000000..6a35ba738126f --- /dev/null +++ b/pkgs/by-name/he/hellwal/package.nix @@ -0,0 +1,33 @@ +{ + stdenv, + lib, + fetchFromGitHub, + makeWrapper, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "hellwal"; + version = "1.0.2"; + src = fetchFromGitHub { + owner = "danihek"; + repo = "hellwal"; + tag = "v${finalAttrs.version}"; + hash = "sha256-TrqXInoz6OEtS12YmXUILV41IkZW0B4XAAESiU2yMMU="; + }; + nativeBuildInputs = [ makeWrapper ]; + installPhase = '' + install -Dm755 hellwal -t $out/bin + mkdir -p $out/share/docs/hellwal + cp -r templates themes $out/share/docs/hellwal + ''; + meta = { + homepage = "https://github.com/danihek/hellwal"; + description = "Fast, extensible color palette generator"; + longDescription = '' + Pywal-like color palette generator, but faster and in C. + ''; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ danihek ]; + mainProgram = "hellwal"; + }; +})