init flake
This commit is contained in:
28
flake.nix
Normal file
28
flake.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
description = "pentatrack flake";
|
||||
|
||||
inputs = {
|
||||
utils.url = "github:numtide/flake-utils";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, utils, nixpkgs }:
|
||||
utils.lib.eachSystem [ "i686-linux" "x86_64-linux" ]
|
||||
(system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
devShell = pkgs.mkShell {
|
||||
shellHok = ''
|
||||
echo "entering pentatrack devenv"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgs.python310Packages.grip
|
||||
];
|
||||
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user