17 lines
614 B
Nix
17 lines
614 B
Nix
let
|
|
module = fetchTarball {
|
|
name = "source";
|
|
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-1.tar.gz";
|
|
sha256 = "sha256-6U0CyPycIBc04hbYy2hBINnVso58n/ZyywY2BD3hu+s=";
|
|
};
|
|
lixSrc = fetchTarball {
|
|
name = "source";
|
|
url = "https://git.lix.systems/lix-project/lix/archive/2.91.1.tar.gz";
|
|
sha256 = "sha256-hiGtfzxFkDc9TSYsb96Whg0vnqBVV7CUxyscZNhed0U=";
|
|
};
|
|
in
|
|
# This is the core of the code you need; it is an exercise to the
|
|
# reader to write the sources in a nicer way, or by using npins or
|
|
# similar pinning tools.
|
|
import "${module}/module.nix" { lix = lixSrc; }
|