Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hellwal: init at 1.0.2 #364360

Merged
merged 2 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4961,6 +4961,12 @@
githubId = 160084;
name = "Daniel Sidhion";
};
danihek = {
email = "[email protected]";
github = "danihek";
githubId = 64467514;
name = "Daniel Krywult";
};
daniyalsuri6 = {
email = "[email protected]";
github = "daniyalsuri6";
Expand Down
33 changes: 33 additions & 0 deletions pkgs/by-name/he/hellwal/package.nix
Original file line number Diff line number Diff line change
@@ -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;
danihek marked this conversation as resolved.
Show resolved Hide resolved
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ danihek ];
mainProgram = "hellwal";
};
})
Loading