6 lines
136 B
Nix
6 lines
136 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.nheko.overrideAttrs (old: {
|
|
src = builtins.filterSource (path: type: path != "result") ./.;
|
|
})
|