diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-01 12:54:37 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-01 12:54:37 +0200 |
commit | 08eb5c464906a29e9f5135e1fb11e872b93746b1 (patch) | |
tree | c1cbbeade93e8d74009273e51e9fb9744bcf3d0a /unmaintained_templates/markdown/flake.nix | |
parent | docs(update_common_files): Improve terminal output (diff) | |
download | flake-templates-08eb5c464906a29e9f5135e1fb11e872b93746b1.tar.gz flake-templates-08eb5c464906a29e9f5135e1fb11e872b93746b1.zip |
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.
Diffstat (limited to 'unmaintained_templates/markdown/flake.nix')
-rw-r--r-- | unmaintained_templates/markdown/flake.nix | 55 |
1 files changed, 55 insertions, 0 deletions
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 + |