pkgs/ponder: init
This commit is contained in:
parent
db07083655
commit
2dc336ea21
3 changed files with 102 additions and 0 deletions
25
pkgs/ponder/default.nix
Normal file
25
pkgs/ponder/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue