2017-10-03 22:27:57 +02:00
|
|
|
{stdenv, fetchFromGitHub, cmake, qtbase, qttools, qtsvg, qwt }:
|
2010-10-24 19:01:09 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "caneda";
|
2017-10-03 22:27:57 +02:00
|
|
|
version = "0.3.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Caneda";
|
|
|
|
repo = "Caneda";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0hx8qid50j9xvg2kpbpqmbdyakgyjn6m373m1cvhp70v2gp1v8l2";
|
2010-10-24 19:01:09 +02:00
|
|
|
};
|
|
|
|
|
2017-10-03 22:27:57 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ qtbase qttools qtsvg qwt ];
|
2017-09-01 04:59:37 +02:00
|
|
|
|
2017-10-03 22:27:57 +02:00
|
|
|
enableParallelBuilding = true;
|
2010-10-24 19:01:09 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Open source EDA software focused on easy of use and portability";
|
2017-08-17 23:57:38 +02:00
|
|
|
homepage = http://caneda.org;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-10-24 19:01:09 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|