Skip to content

Commit

Permalink
add tbump to flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
slashformotion committed Jun 19, 2024
1 parent b47f13c commit 57301c3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 5 deletions.
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,30 @@

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
master.url = "github:nixos/nixpkgs/master";
flake-utils.url = "github:numtide/flake-utils";
};

outputs = {
self,
nixpkgs,
master,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem
(
system: let
pkgs = nixpkgs.legacyPackages.${system};
masterPkgs = master.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
typst
just
zathura
typstyle
buildInputs = [
pkgs.typst
pkgs.just
pkgs.zathura
pkgs.typstyle

masterPkgs.tbump
];
};
}
Expand Down

0 comments on commit 57301c3

Please sign in to comment.