dev
nix 12 lines 187 Bytes
Raw
1 with import <nixpkgs> {};
2 gcc10Stdenv.mkDerivation {
3 name="gcc10-stdenv";
4 buildInputs = [
5 pkgs.cmake
6 pkgs.pkg-config
7 pkgs.autoconf
8 pkgs.libtool
9 pkgs.expat
10 ];
11 }
12