init
This commit is contained in:
commit
18f15741a7
5 changed files with 81 additions and 0 deletions
20
flake.nix
Normal file
20
flake.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
description = "APKs demonstrating class shadowing.";
|
||||
inputs = {
|
||||
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
|
||||
flake-utils.url = github:numtide/flake-utils;
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in rec {
|
||||
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
packages = [ pkgs.hello ];
|
||||
};
|
||||
})
|
||||
;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue