1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00
nix-pills/pills/10/hello-nix.txt
i97henka ff7c04d037 hello.nix refresh
updated tarball version and small change to indentation.
2023-06-06 17:23:31 +01:00

8 lines
155 B
Plaintext

let
pkgs = import <nixpkgs> {};
mkDerivation = import ./autotools.nix pkgs;
in mkDerivation {
name = "hello";
src = ./hello-2.12.1.tar.gz;
}