Compare commits

...

1 commit

Author SHA1 Message Date
89f5196af7
packages/po210: init 2025-12-31 16:33:13 +01:00

View file

@ -0,0 +1,26 @@
{
lib,
fetchFromGitea,
stdenv,
}:
let
rev = "64fbd20e6a888cc974cefbf56275c99333d8f6e9";
in
stdenv.mkDerivation {
pname = "po210";
version = "unstable-" + lib.substring 0 8 rev;
src = fetchFromGitea {
domain = "git.disroot.org";
owner = "80486DX2-66";
repo = "po210";
inherit rev;
hash = "sha256-ph55vv5jiR7OiC9qKwG6WFqI1cTwtAEHZnc2Wd6X134=";
};
installPhase = ''
install -D ./bin/po210 $out/bin/po210
'';
meta.mainProgram = "po210";
}