ddclient/shell.nix
Sandro Jäckel c226710628
Add minimal shell.nix to use with nix package manager and direnv file
which can be activated just with direnv or lorri
2022-01-20 01:14:54 +01:00

11 lines
123 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShellNoCC {
buildInputs = [
autoconf
automake
gnumake
];
}