mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
ref(nix): use callPackage
I didn't know it resolves lambda arguments, interesting
This commit is contained in:
parent
e90eafa667
commit
b00f94996e
5 changed files with 41 additions and 40 deletions
|
|
@ -1,19 +1,17 @@
|
|||
{
|
||||
pkgs,
|
||||
callPackage,
|
||||
unstable,
|
||||
system,
|
||||
opam-nix,
|
||||
...
|
||||
}: let
|
||||
mkNerdFont = import ./mkNerdFont.nix {inherit pkgs unstable;};
|
||||
logisim-evolution = import ./logisim-evolution.nix {inherit pkgs;};
|
||||
mkNerdFont = callPackage ./mkNerdFont.nix {inherit (unstable) nerd-font-patcher;};
|
||||
|
||||
necrolib = import ./necrolib.nix {
|
||||
inherit pkgs system;
|
||||
logisim-evolution = callPackage ./logisim-evolution.nix {};
|
||||
|
||||
necrolib = callPackage ./necrolib.nix {
|
||||
inherit opam-nix;
|
||||
};
|
||||
|
||||
hiosevka = import ./hiosevka {inherit pkgs;};
|
||||
hiosevka = callPackage ./hiosevka {};
|
||||
hiosevka-nerd-font-mono = mkNerdFont {
|
||||
font = hiosevka;
|
||||
extraArgs = ["--name {/.}-NFM" "--use-single-width-glyphs"];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue