mirror of
https://github.com/NixOS/nix.git
synced 2024-11-26 08:42:30 +00:00
7 lines
101 B
Nix
7 lines
101 B
Nix
{ filename, sha256 }:
|
|
|
|
import <nix/fetchurl.nix> {
|
|
url = "file://${filename}";
|
|
inherit sha256;
|
|
}
|