mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-25 13:09:32 +00:00
12 lines
186 B
Nix
12 lines
186 B
Nix
with import <nixpkgs> {};
|
|
gcc10Stdenv.mkDerivation {
|
|
name="gcc10-stdenv";
|
|
buildInputs = [
|
|
pkgs.cmake
|
|
pkgs.pkgconfig
|
|
pkgs.autoconf
|
|
pkgs.libtool
|
|
pkgs.expat
|
|
];
|
|
}
|
|
|