forked from DGNum/colmena
default.nix: Switch to flake-compat
`package.nix` is kept in sync with the expression in upstream Nixpkgs.
This commit is contained in:
parent
abb74b9f49
commit
7e15450fd2
4 changed files with 45 additions and 58 deletions
|
@ -19,7 +19,7 @@
|
|||
# We still maintain the expression in a Nixpkgs-acceptable form
|
||||
defaultPackage = self.packages.${system}.colmena;
|
||||
packages = rec {
|
||||
colmena = import ./default.nix { inherit pkgs; };
|
||||
colmena = pkgs.callPackage ./package.nix { };
|
||||
|
||||
# Full user manual
|
||||
manual = let
|
||||
|
@ -59,9 +59,7 @@
|
|||
};
|
||||
}) // {
|
||||
overlay = final: prev: {
|
||||
colmena = import ./default.nix {
|
||||
pkgs = final;
|
||||
};
|
||||
colmena = final.callPackage ./package.nix { };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue