nyxexprs/pkgs/default.nix

47 lines
1 KiB
Nix
Raw Normal View History

2023-11-03 07:25:58 +00:00
{
inputs,
self,
...
}: {
systems = ["x86_64-linux"];
imports = [inputs.flake-parts.flakeModules.easyOverlay];
perSystem = {
config,
system,
pkgs,
...
}: {
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
2023-11-03 09:27:04 +00:00
packages = let
pins = import ../npins;
mkPackage = path: {__functor = self: self.override;} // (pkgs.callPackage path {inherit pins;});
in {
# packages that follow npins entries
# they can be updated via npins
ani-cli = mkPackage ./ani-cli;
rat = mkPackage ./rat;
mov-cli = mkPackage ./mov-cli;
# static packages
# need manual intervention with each update
2023-11-03 07:25:58 +00:00
cloneit = pkgs.callPackage ./cloneit {};
2023-11-03 09:27:04 +00:00
reposilite-bin = pkgs.callPackage ./reposilite-bin {};
2023-11-03 07:25:58 +00:00
2023-11-03 09:27:04 +00:00
# patched packages
2023-11-03 07:25:58 +00:00
foot-transparent = pkgs.foot.overrideAttrs (old: {
patches =
(old.patches or [])
++ [
../patches/0001-foot-transparent.patch
];
});
};
};
}