From 705757de399aca7b773e95651e2974224bfcb8f5 Mon Sep 17 00:00:00 2001 From: danihek Date: Thu, 12 Dec 2024 21:59:29 +0100 Subject: [PATCH] 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 00000000000000..adf7b10365bb50 --- /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.all; + maintainers = with lib.maintainers; [ danihek ]; + mainProgram = "hellwal"; + }; +})