9 lines
101 B
Nix
9 lines
101 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
runCommand "www" {
|
||
|
buildInputs = [
|
||
|
openssl
|
||
|
pkg-config
|
||
|
];
|
||
|
} ""
|