nixpkgs/pkgs/tools/misc/findutils-wrapper/default.nix

11 lines
189 B
Nix
Raw Normal View History

{stdenv, findutils}:
stdenv.mkDerivation {
name = findutils.name;
builder = ./builder.sh;
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
inherit findutils;
}