mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
15 lines
213 B
Nix
15 lines
213 B
Nix
{
|
|
name = "hello";
|
|
|
|
description = "A flake for building Hello World";
|
|
|
|
epoch = 2019;
|
|
|
|
requires = [ "nixpkgs" ];
|
|
|
|
provides = deps: rec {
|
|
|
|
packages.hello = deps.nixpkgs.provides.packages.hello;
|
|
|
|
};
|
|
}
|