From 3c51d54b88f65036b66704c50a23b558376bb607 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sun, 30 Jun 2024 12:55:15 +0200 Subject: [PATCH] flake.nix: Add templates.package --- flake.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/flake.nix b/flake.nix index 4a62cd4..53e40d4 100644 --- a/flake.nix +++ b/flake.nix @@ -33,6 +33,16 @@ A minimal flake using flake-parts importing nixpkgs with the unfree option. ''; }; + package = { + path = ./template/package; + description = '' + A flake with a simple package: + - Nixpkgs + - callPackage + - src with fileset + - a check with runCommand + ''; + }; }; flakeModules = { easyOverlay = ./extras/easyOverlay.nix;