pkgs/ponder: init

This commit is contained in:
Infinidoge 2024-02-05 16:18:35 -05:00
parent db07083655
commit 2dc336ea21
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
3 changed files with 102 additions and 0 deletions

25
pkgs/ponder/default.nix Normal file
View file

@ -0,0 +1,25 @@
{ stdenvNoCC, fetchFromGitHub, lib }:
stdenvNoCC.mkDerivation {
pname = "ponder";
version = "unstable-2022-12-15";
src = fetchFromGitHub {
owner = "codazoda";
repo = "ponder";
rev = "5eb224e8c0fb305aee931b460c48511ef4d87501";
sha256 = "sha256-h2c8m6swt1jh1c99qkLp6fI7G6qhHHsj2df0XU3K08k=";
};
patches = [ ./dark-mode.patch ];
preferLocalBuild = true;
installPhase = ''
cp -r $src/app $out
'';
meta = with lib; {
license = licenses.mit;
};
}