mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
13 lines
187 B
Nix
13 lines
187 B
Nix
|
with import <nixpkgs> {};
|
||
|
gcc10Stdenv.mkDerivation {
|
||
|
name="gcc10-stdenv";
|
||
|
buildInputs = [
|
||
|
pkgs.cmake
|
||
|
pkgs.pkg-config
|
||
|
pkgs.autoconf
|
||
|
pkgs.libtool
|
||
|
pkgs.expat
|
||
|
];
|
||
|
}
|
||
|
|