diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-03-31 23:40:32 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-01 00:00:04 +0200 |
commit | 6df2ef639806567bf7ef9b3b50bef08b9cfb7e3a (patch) | |
tree | 60b33e862c20f8aff56949d40b197aec71eedb91 /templates/unmaintained/markdown/flake.nix | |
parent | feat(shell): Update to my new SOTA (diff) | |
download | flake-templates-6df2ef639806567bf7ef9b3b50bef08b9cfb7e3a.tar.gz flake-templates-6df2ef639806567bf7ef9b3b50bef08b9cfb7e3a.zip |
refactor({python,markdown}): Also move them to the templates diretory
Diffstat (limited to 'templates/unmaintained/markdown/flake.nix')
-rw-r--r-- | templates/unmaintained/markdown/flake.nix | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/templates/unmaintained/markdown/flake.nix b/templates/unmaintained/markdown/flake.nix new file mode 100644 index 0000000..598b4fe --- /dev/null +++ b/templates/unmaintained/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 + |