mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 22:49:41 +00:00
23 lines
491 B
Nix
23 lines
491 B
Nix
{
|
|
lib,
|
|
fetchFromGitea,
|
|
stdenv,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "po210";
|
|
version = "unstable-" + lib.substring 0 8 finalAttrs.src.rev;
|
|
|
|
src = fetchFromGitea {
|
|
domain = "git.disroot.org";
|
|
owner = "80486DX2-66";
|
|
repo = "po210";
|
|
rev = "64fbd20e6a888cc974cefbf56275c99333d8f6e9";
|
|
hash = "sha256-ph55vv5jiR7OiC9qKwG6WFqI1cTwtAEHZnc2Wd6X134=";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -D ./bin/po210 $out/bin/po210
|
|
'';
|
|
|
|
meta.mainProgram = "po210";
|
|
})
|