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 /templates/unmaintained/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 'templates/unmaintained/markdown/flake.nix')
-rw-r--r-- | templates/unmaintained/markdown/flake.nix | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/templates/unmaintained/markdown/flake.nix b/templates/unmaintained/markdown/flake.nix deleted file mode 100644 index 598b4fe..0000000 --- a/templates/unmaintained/markdown/flake.nix +++ /dev/null @@ -1,55 +0,0 @@ -{ - 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 - |