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