1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs@{ nixpkgs, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
];
perSystem = { self', system, pkgs, ... }: let
deps = with pkgs; [
(pandoc-include.overrideAttrs (_: {
src = ./.;
name = "pandoc-include-master";
}))
(python3.withPackages (ps: with ps; [
panflute
natsort
lxml
build
]))
];
in {
devShells = {
default = pkgs.mkShell {
packages = deps;
};
};
apps = {
release = {
type = "app";
program = pkgs.writeShellScriptBin "release" ''
set -e
ver=$(git cliff --bumped-version)
ver=''${ver:1}
sed -i "s/^version = \".*\"/version = \"$ver\"/" pyproject.toml
git cliff --bump -o CHANGELOG.md
git add -A
git commit -m "chore(release): v$ver"
git tag "v$ver"
'';
};
};
};
};
}
|