You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{ pkgs ? import <nixpkgs> { }, sources ? import ./nix/sources.nix
|
|
, naersk ? import sources.naersk { } }:
|
|
with pkgs;
|
|
|
|
let
|
|
srcNoTarget = dir:
|
|
builtins.filterSource
|
|
(path: type: type != "directory" || builtins.baseNameOf path != "target")
|
|
dir;
|
|
naersk = pkgs.callPackage sources.naersk { };
|
|
src = srcNoTarget ./.;
|
|
remapPathPrefix = true;
|
|
in naersk.buildPackage { inherit src remapPathPrefix; }
|