blob: 17c6b5a929d7b89d7a3afb62906cf941a8bf1782 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, naersk, ... }:
naersk.buildPackage {
src = builtins.filterSource
(path: type:
type != "directory" || builtins.baseNameOf path != "target")
./.;
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ openssl ];
remapPathPrefix = true;
doCheck = true;
}
|