From 08eb5c464906a29e9f5135e1fb11e872b93746b1 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 1 Apr 2024 12:54:37 +0200 Subject: refactor(templates/unmaintained): Move out of the templates dir Otherwise, the `update_common_files` script will try to instantiate files in there, which is just useless noise. --- unmaintained_templates/markdown/flake.nix | 55 +++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 unmaintained_templates/markdown/flake.nix (limited to 'unmaintained_templates/markdown/flake.nix') diff --git a/unmaintained_templates/markdown/flake.nix b/unmaintained_templates/markdown/flake.nix new file mode 100644 index 0000000..598b4fe --- /dev/null +++ b/unmaintained_templates/markdown/flake.nix @@ -0,0 +1,55 @@ +{ + description = ""; # TODO + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + systems = { + url = "github:nix-systems/x86_64-linux"; # only evaluate for this system + }; + flake-utils = { + url = "github:numtide/flake-utils"; + inputs = { + systems.follows = "systems"; + }; + }; + flake_version_update = { + url = "git+https://codeberg.org/soispha/flake_version_update.git"; + inputs = { + systems.follows = "systems"; + nixpkgs.follows = "nixpkgs"; + flake-utils.follows = "flake-utils"; + }; + }; + }; + + outputs = { + nixpkgs, + flake-utils, + flake_version_update, + ... + }: + flake-utils.lib.eachDefaultSystem (system: let + pkgs = nixpkgs.legacyPackages.${system}; + + # This version is set automatically on `cog bump --auto`; + version = "v1.0.0"; # GUIDING VERSION STRING + in { + packages.default = pkgs.stdenv.mkDerivation { + pname = ""; # TODO + inherit version; + src = ./.; + + installPhase = '' + install -D $scr/scr/*.md $out/; + ''; + }; + devShells.default = pkgs.mkShell { + packages = with pkgs; [ + cocogitto + flake_version_update.packages."${system}".default + ]; + }; + }); +} +# vim: ts=2 + -- cgit 1.4.1