Simon Bruder
dde17cf4ec
I don’t know if (and doubt that) this is a good solution. I can’t simply callPackage it, since it does not use a callPackage compatible nix expression but rather a ready-to-build default.nix. Also, I need the source in two different files, one of which can’t use nixpkgs fetchers.
11 lines
147 B
Nix
11 lines
147 B
Nix
{ pkgs, ... }:
|
|
let
|
|
srcs = import ./srcs.nix;
|
|
in
|
|
{
|
|
imports = [
|
|
./wordclock-dimmer/module.nix
|
|
"${srcs.bang-evaluator}/module.nix"
|
|
];
|
|
}
|