mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
16 lines
213 B
Nix
16 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;
|
||
|
|
||
|
};
|
||
|
}
|