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