instala programas para RapidSilicon
This commit is contained in:
parent
0bdad7bc4e
commit
41440f6eeb
3 changed files with 25 additions and 0 deletions
17
pkgs/andesight.nix
Normal file
17
pkgs/andesight.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ 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;
|
||||
}
|
4
pkgs/default.nix
Normal file
4
pkgs/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
pkgs:
|
||||
{
|
||||
andesight = pkgs.callPackage ./andesight.nix {};
|
||||
}
|
Reference in a new issue