Skip to content

Commit

Permalink
refactor(nix): misc
Browse files Browse the repository at this point in the history
  • Loading branch information
uncenter committed May 25, 2024
1 parent 27d7554 commit 5bb4ca7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@
default = pkgs.callPackage ./nix/shell.nix { };
});

packages = forAllSystems (pkgs: rec {
default = purr;
purr = pkgs.callPackage ./nix/default.nix { };
packages = forAllSystems (pkgs: {
default = pkgs.callPackage ./nix/default.nix { };
});
};
}
4 changes: 2 additions & 2 deletions nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ rustPlatform.buildRustPackage {
]
);

meta = with lib; {
meta = {
description = "Utility commands for managing userstyles";
homepage = "https://github.com/uncenter/purr";
license = licenses.mit;
license = lib.licenses.mit;
mainProgram = "purr";
};
}

0 comments on commit 5bb4ca7

Please sign in to comment.