From 582dceee4db7a13cf73216c9e85276c126fe34ff Mon Sep 17 00:00:00 2001 From: jeschli Date: Sat, 27 Oct 2018 12:37:26 +0200 Subject: Add introduction --- pkgs/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/default.nix b/pkgs/default.nix index ea3421b..a56042c 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,5 +1,24 @@ with import ../lib; +/* Collection of nix-writers. + * + * Purpose: Use your favourite language to generate + * an executable and package it in nix. + * + * How to use it: Every nix-writer has the form: + * writeLang "Name-of-exec" '' + * source code in + * '' + * + * If the source code compiles in , + * nix will generate an executable /nix/store/- + * + * Getting started: + * + * Switch into the example directory and call + * nix-build hello_world.nix. + */ + pkgs: oldpkgs: { exec = name: { filename, argv ? null, envp ? null, destination ? "" }: pkgs.writeC name { inherit destination; } /* c */ '' -- cgit v1.2.3