Skip to content

Commit

Permalink
hellwal: init at 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
danihek committed Dec 12, 2024
1 parent d886f60 commit 713eac3
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/by-name/he/hellwal/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
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 = [
"x86_64-linux"
"x86_64-darwin"
];
maintainers = with lib.maintainers; [ danihek ];
mainProgram = "hellwal";
};
})

0 comments on commit 713eac3

Please sign in to comment.