about summary refs log tree commit diff
path: root/corepkgs/fetchurl/default.nix
blob: 8957662eccab0e3fff1d1828dea9ecbfa1d43489 (plain) (blame)
1
2
3
4
5
6
7
8
{system, url, md5}:

derivation {
  name = baseNameOf (toString url);
  builder = ./builder.sh;
  id = md5;
  inherit system url md5;
}