mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-20 17:54:41 +00:00
13 lines
202 B
Nix
13 lines
202 B
Nix
with import <nixpkgs> {};
|
|
gcc10Stdenv.mkDerivation {
|
|
name="gcc10-stdenv";
|
|
buildInputs = [
|
|
pkgs.cmake
|
|
pkgs.boost182
|
|
pkgs.pkgconf
|
|
pkgs.autoconf
|
|
pkgs.libtool
|
|
pkgs.expat
|
|
];
|
|
}
|
|
|