cake_wallet/scripts/linux/gcc10.nix

14 lines
202 B
Nix
Raw Normal View History

2023-09-08 12:04:28 +00:00
with import <nixpkgs> {};
gcc10Stdenv.mkDerivation {
name="gcc10-stdenv";
buildInputs = [
pkgs.cmake
2023-11-14 23:17:15 +00:00
pkgs.boost182
pkgs.pkgconf
2023-09-08 12:04:28 +00:00
pkgs.autoconf
pkgs.libtool
pkgs.expat
];
}