lol

coloquinte: init at version 0.3.1

+46
+6
maintainers/maintainer-list.nix
··· 3263 3263 githubId = 244239; 3264 3264 name = "Mauricio Collares"; 3265 3265 }; 3266 + coloquinte = { 3267 + email = "gabriel.gouvine_nix@m4x.org"; 3268 + github = "coloquinte"; 3269 + githubId = 4102525; 3270 + name = "Gabriel Gouvine"; 3271 + }; 3266 3272 commandodev = { 3267 3273 email = "ben@perurbis.com"; 3268 3274 github = "commandodev";
+38
pkgs/development/libraries/science/electronics/coloquinte/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , lemon-graph 6 + , eigen 7 + , boost 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "coloquinte"; 12 + version = "0.3.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "coloquinte"; 16 + repo = "PlaceRoute"; 17 + rev = finalAttrs.version; 18 + hash = "sha256-bPDXaNZCNBM0qiu+46cL/zH/41lwqHPqfqTzJaERgVQ="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + cmake 23 + ]; 24 + 25 + buildInputs = [ 26 + lemon-graph 27 + eigen 28 + boost 29 + ]; 30 + 31 + meta = { 32 + description = "Placement library for electronic circuits"; 33 + homepage = "https://github.com/Coloquinte/PlaceRoute"; 34 + license = lib.licenses.mit; 35 + platforms = lib.platforms.linux; 36 + maintainers = [ lib.maintainers.coloquinte ]; 37 + }; 38 + })
+2
pkgs/top-level/all-packages.nix
··· 20432 20432 20433 20433 collada-dom = callPackage ../development/libraries/collada-dom { }; 20434 20434 20435 + coloquinte = callPackage ../development/libraries/science/electronics/coloquinte { }; 20436 + 20435 20437 cog = callPackage ../development/web/cog { }; 20436 20438 20437 20439 cosmocc = callPackage ../development/tools/cosmocc { };