18 lines
409 B
Nix
18 lines
409 B
Nix
{ lib, stdenv, ... }:
|
|
with lib;
|
|
let
|
|
version = "510_STD";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "andesight";
|
|
inherit version;
|
|
|
|
src = requireFile {
|
|
name = "AndeSight_${version}_OFFICIAL_Linux_x64_COPILOT600Beta.tgz";
|
|
sha256 = fakeSha256; #"ycz2s9w68gnc7h5rz5fk5hl96zz2hlfl";
|
|
url = "http://www.andestech.com/en/support-downloads/andesight-ide-download/";
|
|
};
|
|
|
|
meta.license = licenses.unfree;
|
|
}
|