mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
Compare commits
2 commits
11fcfdb7f7
...
89f5196af7
| Author | SHA1 | Date | |
|---|---|---|---|
| 89f5196af7 | |||
| b9636d4cdc |
2 changed files with 26 additions and 3 deletions
|
|
@ -71,12 +71,9 @@ in
|
||||||
|
|
||||||
# use lix everywhere and wrap it with nom
|
# use lix everywhere and wrap it with nom
|
||||||
../overlays/lix.nix
|
../overlays/lix.nix
|
||||||
../overlays/nix-monitored.nix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.package = pkgs.nix-monitored;
|
|
||||||
|
|
||||||
system.nixos =
|
system.nixos =
|
||||||
let
|
let
|
||||||
rev = lib.substring 0 8 sources.nixpkgs.revision;
|
rev = lib.substring 0 8 sources.nixpkgs.revision;
|
||||||
|
|
|
||||||
26
nix/packages/by-name/po210/package.nix
Normal file
26
nix/packages/by-name/po210/package.nix
Normal 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";
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue