summary refs log tree commit diff
path: root/pkgs/build-support/fetchfile/default.nix
blob: 88f7aa42aa8cc0e64fa78ed573026098b04c7198 (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv}: {pathname, md5}: derivation {
  name = baseNameOf (toString url);
  system = stdenv.system;
  builder = ./builder.sh;
  stdenv = stdenv;
  pathname = pathname;
  md5 = md5;
  id = md5;
}