2021-01-25 00:26:54 -08:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase, qttools, qtsvg, qwt }:
|
2010-10-24 10:01:09 -07:00
|
|
|
|
2020-04-07 13:25:03 -07:00
|
|
|
mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "caneda";
|
2017-10-03 13:27:57 -07:00
|
|
|
version = "0.3.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Caneda";
|
|
|
|
repo = "Caneda";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0hx8qid50j9xvg2kpbpqmbdyakgyjn6m373m1cvhp70v2gp1v8l2";
|
2010-10-24 10:01:09 -07:00
|
|
|
};
|
|
|
|
|
2017-10-03 13:27:57 -07:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ qtbase qttools qtsvg qwt ];
|
2017-08-31 19:59:37 -07:00
|
|
|
|
2010-10-24 10:01:09 -07:00
|
|
|
meta = {
|
|
|
|
description = "Open source EDA software focused on easy of use and portability";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://caneda.org";
|
2021-01-15 05:21:58 -08:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; linux;
|
2010-10-24 10:01:09 -07:00
|
|
|
};
|
|
|
|
}
|