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