Skip to content

Commit

Permalink
Merge pull request #81 from slashformotion/slashformotion-patch-1
Browse files Browse the repository at this point in the history
flake: input master is no longer needed
  • Loading branch information
quachpas authored Nov 5, 2024
2 parents da5b809 + c89c242 commit c9b8c5b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,26 @@

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 = [
pkgs.typst
pkgs.just
pkgs.zathura
pkgs.typstyle

masterPkgs.tbump
pkgs.tbump
];
};
}
Expand Down

0 comments on commit c9b8c5b

Please sign in to comment.