mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
accelergy: init at unstable-2022-05-03
This commit is contained in:
parent
c96c80356a
commit
d3153abe7d
@ -0,0 +1,27 @@
|
||||
{ lib, fetchFromGitHub, python3Packages, pkgs }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "accelergy";
|
||||
version = "unstable-2022-05-03";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Accelergy-Project";
|
||||
repo = "accelergy";
|
||||
rev = "34df8e87a889ae55cecba58992d4573466b40565";
|
||||
hash = "sha256-SRtt1EocHy5fKszpoumC+mOK/qhreoA2/Ff1wcu5WKo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pyyaml
|
||||
yamlordereddictloader
|
||||
pyfiglet
|
||||
setuptools
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An architecture-level energy/area estimator for accelerator designs";
|
||||
license = licenses.mit;
|
||||
homepage = "https://accelergy.mit.edu/";
|
||||
maintainers = with maintainers; [ gdinh ];
|
||||
};
|
||||
}
|
@ -1990,6 +1990,8 @@ with pkgs;
|
||||
|
||||
twine = with python3Packages; toPythonApplication twine;
|
||||
|
||||
accelergy = callPackage ../applications/science/computer-architecture/accelergy { };
|
||||
|
||||
aldo = callPackage ../applications/radio/aldo { };
|
||||
|
||||
alglib = callPackage ../development/libraries/alglib { };
|
||||
|
Loading…
Reference in New Issue
Block a user