coriolis/flake.nix

84 lines
2.5 KiB
Nix
Raw Normal View History

2021-08-16 12:06:47 -05:00
{
description = "Coriolis is a free database, placement tool and routing tool for VLSI design.";
# Nixpkgs / NixOS version to use.
inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-21.05";
outputs = { self, nixpkgs }:
let
# Generate a user-friendly version numer.
version = builtins.substring 0 8 self.lastModifiedDate;
# System types to support.
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
# Helper function to generate an attrset '{ x86_64-linux = f "x86_64-linux"; ... }'.
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
# Nixpkgs instantiated for supported system types.
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; overlays = [ self.overlay ]; });
coriolis =
2021-08-21 17:09:39 -05:00
{ lib, stdenv, python2, cmake_2_8, boost, bison, flex, libxml2, rapidjson, which, qt4 }:
2021-08-16 12:06:47 -05:00
let boostWithPython = boost.override { enablePython = true; python = python2; }; in
stdenv.mkDerivation {
name = "coriolis-${version}";
src = ./.;
postPatch = ''
patchShebangs .
export HOME=/build
mkdir -p /build/coriolis-2.x/src
dir="$PWD"
mv "$PWD" -T /build/coriolis-2.x/src/coriolis
'';
configurePhase = "runHook preConfigure; runHook postConfigure";
hardeningDisable = [ "format" ];
buildPhase = ''
runHook preBuild
./bootstrap/ccb.py --project=coriolis --make="-j$NIX_BUILD_CORES install"
runHook postBuild
'';
2021-08-16 14:50:39 -05:00
installPhase = ''
mkdir $out
mv /build/coriolis-2.x/*.* -t $out
'';
2021-08-16 12:06:47 -05:00
checkPhase = "true";
buildInputs = [ python2 boostWithPython libxml2 rapidjson qt4 ];
2021-08-21 17:09:39 -05:00
nativeBuildInputs = [ cmake_2_8 bison flex which ];
2021-08-16 12:06:47 -05:00
meta = with lib; {
description = "Coriolis is a free database, placement tool and routing tool for VLSI design.";
homepage = "http://coriolis.lip6.fr/";
license = licenses.gpl3;
platforms = platforms.all;
};
};
in
rec {
overlay = final: prev: {
coriolis = final.callPackage coriolis {};
};
packages = forAllSystems (system:
{
inherit (nixpkgsFor.${system}) coriolis;
});
defaultPackage = forAllSystems (system: self.packages.${system}.coriolis);
devShell = defaultPackage;
hydraJobs.coriolis = self.defaultPackage;
};
}