about summary refs log tree commit diff
path: root/corepkgs/fetchurl/default.nix
blob: 663bba4a3800ec0c9cc8d935f418ebb170cb628d (plain) (blame)
1
2
3
4
5
6
7
8
{system, url, md5}: derivation {
  name = baseNameOf (toString url);
  system = system;
  builder = ./builder.sh;
  url = url;
  md5 = md5;
  id = md5;
}