cake_wallet/scripts/linux/gcc10.nix

13 lines
186 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
pkgs.pkgconfig
pkgs.autoconf
pkgs.libtool
pkgs.expat
];
}