forked from luca-de-felice/bachelorthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
24 lines (22 loc) · 747 Bytes
/
flake.nix
File metadata and controls
24 lines (22 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
description = "omnet++ setup that works?";
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-22.05;
inputs.flake-utils.url = github:numtide/flake-utils;
/* inputs.nurpkgs.url = github:pschuprikov/nur-packages; */
inputs.nurpkgs.url = git+file:///home/pschuprikov/repos/nur-packages;
inputs.nurpkgs.inputs.nixpkgs.follows = "nixpkgs";
outputs = { self, nixpkgs, flake-utils, nurpkgs }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
buildInputs = [
nurpkgs.packages.${system}.omnetpp_5_7
pkgs.openscenegraph
pkgs.libGL
pkgs.clang_12
];
};
});
}