podlet flake
This commit is contained in:
commit
3f9962d2e3
3 changed files with 99 additions and 0 deletions
22
flake.nix
Normal file
22
flake.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
description = "Podlet";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
flake-utils,
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
# packageName = "podlet";
|
||||
in {
|
||||
defaultPackage = pkgs.callPackage ./default.nix {};
|
||||
# defaultPackage = self.packages.${system}.${packageName};
|
||||
devShell = pkgs.mkShell {buildInputs = [];};
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue