coloquinte: init at version 0.3.1

This commit is contained in:
Gabriel Gouvine 2023-07-10 15:54:30 +02:00
parent 0d52ff67f8
commit de3cc6244a
3 changed files with 46 additions and 0 deletions

View file

@ -3263,6 +3263,12 @@
githubId = 244239;
name = "Mauricio Collares";
};
coloquinte = {
email = "gabriel.gouvine_nix@m4x.org";
github = "coloquinte";
githubId = 4102525;
name = "Gabriel Gouvine";
};
commandodev = {
email = "ben@perurbis.com";
github = "commandodev";

View file

@ -0,0 +1,38 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, lemon-graph
, eigen
, boost
}:
stdenv.mkDerivation (finalAttrs: {
pname = "coloquinte";
version = "0.3.1";
src = fetchFromGitHub {
owner = "coloquinte";
repo = "PlaceRoute";
rev = finalAttrs.version;
hash = "sha256-bPDXaNZCNBM0qiu+46cL/zH/41lwqHPqfqTzJaERgVQ=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
lemon-graph
eigen
boost
];
meta = {
description = "Placement library for electronic circuits";
homepage = "https://github.com/Coloquinte/PlaceRoute";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.coloquinte ];
};
})

View file

@ -20432,6 +20432,8 @@ with pkgs;
collada-dom = callPackage ../development/libraries/collada-dom { };
coloquinte = callPackage ../development/libraries/science/electronics/coloquinte { };
cog = callPackage ../development/web/cog { };
cosmocc = callPackage ../development/tools/cosmocc { };