11 lines
123 B
Nix
11 lines
123 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
with pkgs;
|
|
|
|
mkShellNoCC {
|
|
buildInputs = [
|
|
autoconf
|
|
automake
|
|
gnumake
|
|
];
|
|
}
|