nixpkgs/pkgs/applications/science/electronics/caneda/default.nix

25 lines
673 B
Nix
Raw Normal View History

2020-04-07 20:25:03 +00:00
{ mkDerivation, stdenv, fetchFromGitHub, cmake, qtbase, qttools, qtsvg, qwt }:
2020-04-07 20:25:03 +00:00
mkDerivation rec {
pname = "caneda";
version = "0.3.1";
src = fetchFromGitHub {
owner = "Caneda";
repo = "Caneda";
rev = version;
sha256 = "0hx8qid50j9xvg2kpbpqmbdyakgyjn6m373m1cvhp70v2gp1v8l2";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qtbase qttools qtsvg qwt ];
2017-09-01 02:59:37 +00:00
meta = {
description = "Open source EDA software focused on easy of use and portability";
homepage = "http://caneda.org";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}