instala programas para RapidSilicon
This commit is contained in:
parent
0bdad7bc4e
commit
41440f6eeb
|
@ -50,6 +50,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
localPkgs = import ./pkgs;
|
||||||
|
|
||||||
platforms = domain:
|
platforms = domain:
|
||||||
map
|
map
|
||||||
(lib.removeSuffix ".nix")
|
(lib.removeSuffix ".nix")
|
||||||
|
@ -63,11 +65,13 @@
|
||||||
|
|
||||||
nixosConfigurations = configs "base" base;
|
nixosConfigurations = configs "base" base;
|
||||||
homeConfigurations = configs "home" home;
|
homeConfigurations = configs "home" home;
|
||||||
|
packages."${system}" = localPkgs pkgs;
|
||||||
|
|
||||||
overlay = self: super: {
|
overlay = self: super: {
|
||||||
unstable = import unstable {
|
unstable = import unstable {
|
||||||
inherit(super) config system;
|
inherit(super) config system;
|
||||||
};
|
};
|
||||||
|
local = localPkgs self;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
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 {};
|
||||||
|
}
|
Loading…
Reference in a new issue