forked from M-Labs/nix-scripts
8 lines
180 B
Nix
8 lines
180 B
Nix
{ pkgs ? import <nixpkgs> {}}:
|
|
pkgs.fetchgit {
|
|
url = "https://github.com/m-labs/artiq";
|
|
rev = import ./artiq-rev.nix;
|
|
sha256 = import ./artiq-hash.nix;
|
|
deepClone = true;
|
|
}
|