forked from lix-project/lix
7 lines
101 B
Nix
7 lines
101 B
Nix
{ filename, sha256 }:
|
|
|
|
import <nix/fetchurl.nix> {
|
|
url = "file://${filename}";
|
|
inherit sha256;
|
|
}
|