forked from lix-project/lix
Maximilian Bosch
b8bddb63e6
This doesn't work anymore since `packages` was removed from the
`nixpkgs`-fork with flake support[1], now it's only possible to refer to
pkgs via `legacyPackages`.
[1] 49c9b71e4c
12 lines
195 B
Nix
12 lines
195 B
Nix
{
|
|
description = "A flake for building Hello World";
|
|
|
|
edition = 201909;
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
|
|
|
|
};
|
|
}
|