added arch to devShell
This commit is contained in:
parent
f9a94125db
commit
94f6cc9b43
1 changed files with 2 additions and 6 deletions
|
@ -3,20 +3,16 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
utils = {
|
||||
url = "github:numtide/flake-utils";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, utils, ... }:
|
||||
outputs = { self, nixpkgs, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
in {
|
||||
devShell = pkgs.mkShell rec {
|
||||
devShell.x86_64-linux = pkgs.mkShell rec {
|
||||
name = "gcc-devel";
|
||||
packages = with pkgs; [
|
||||
cmake
|
||||
|
|
Loading…
Add table
Reference in a new issue