upperLowerBounds/default.nix

13 lines
249 B
Nix
Raw Permalink Normal View History

2019-09-26 16:59:28 +00:00
with import <nixpkgs> {}; {
skidjularENV = stdenv.mkDerivation {
name = skidjular-env;
buildInputs = [
stdenv
cmake
gcc
pkgs.qt5.full
pkgs.qtcreator
2019-09-26 16:59:28 +00:00
];
};
}