Fix licenses
This commit is contained in:
parent
6beed7504c
commit
36203e5d51
|
@ -22,7 +22,6 @@
|
||||||
meta = with nixpkgs.lib; {
|
meta = with nixpkgs.lib; {
|
||||||
description = "Coriolis is a free database, placement tool and routing tool for VLSI design.";
|
description = "Coriolis is a free database, placement tool and routing tool for VLSI design.";
|
||||||
homepage = "http://coriolis.lip6.fr/";
|
homepage = "http://coriolis.lip6.fr/";
|
||||||
license = licenses.gpl3;
|
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
{ version, meta, generic, ... }:
|
{ version, meta, generic, ... }:
|
||||||
|
|
||||||
let pkg =
|
let pkg =
|
||||||
{ libxml2, bzip2, rapidjson, qt4, bison, flex, doxygen, coriolis-vlsisapd }:
|
{ lib, libxml2, bzip2, rapidjson, qt4, bison, flex, doxygen, coriolis-vlsisapd }:
|
||||||
{
|
{
|
||||||
name = "hurricane";
|
name = "hurricane";
|
||||||
src = ../hurricane;
|
src = ../hurricane;
|
||||||
buildInputs = [ libxml2 qt4 bzip2 rapidjson coriolis-vlsisapd ];
|
buildInputs = [ libxml2 qt4 bzip2 rapidjson coriolis-vlsisapd ];
|
||||||
nativeBuildInputs = [ bison flex doxygen ];
|
nativeBuildInputs = [ bison flex doxygen ];
|
||||||
pythonImportsCheck = [ "Viewer" "Hurricane" "Cfg2" "Analog" ];
|
pythonImportsCheck = [ "Viewer" "Hurricane" "Cfg2" "Analog" ];
|
||||||
|
continuation = drv: drv.overrideAttrs (o: { meta = o.meta // { license = lib.licenses.lgpl3Plus; });
|
||||||
};
|
};
|
||||||
in generic pkg
|
in generic pkg
|
||||||
|
|
|
@ -15,5 +15,7 @@ stdenv.mkDerivation {
|
||||||
buildInputs = [ python2 boostWithPython coriolis-bootstrap bison flex zlib ];
|
buildInputs = [ python2 boostWithPython coriolis-bootstrap bison flex zlib ];
|
||||||
nativeBuildInputs = [ cmake ninja ];
|
nativeBuildInputs = [ cmake ninja ];
|
||||||
|
|
||||||
inherit version meta;
|
inherit version;
|
||||||
|
|
||||||
|
meta = meta // { license = lib.licenses.apsl20; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue