init
This commit is contained in:
commit
0d777da073
5 changed files with 172 additions and 0 deletions
15
flake.nix
Normal file
15
flake.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
packages.default = import ./default.nix { inherit pkgs; };
|
||||
# packages.default = pkgs.writeShellScriptBin "pppwn"
|
||||
# "${self.packages.${system}.pppwn}/bin/pppwn.py \"$@\"";
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue