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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, automake, pkg-config
2018-06-13 11:21:34 +00:00
, cairo, ghostscript, ngspice, tcl, tk, xorg, zlib }:
let
version = "3.10.12";
2018-06-13 11:21:34 +00:00
name = "xcircuit-${version}";
2021-01-15 13:21:58 +00:00
inherit (lib) getBin;
2018-06-13 11:21:34 +00:00
in stdenv.mkDerivation {
inherit name version;
src = fetchurl {
url = "http://opencircuitdesign.com/xcircuit/archive/${name}.tgz";
sha256 = "1h1ywc3mr7plvwnhdii2zgnnv5ih2nhyl4qbdjpi83dq0aq1s2mn";
2018-06-13 11:21:34 +00:00
};
nativeBuildInputs = [ autoreconfHook automake pkg-config ];
2018-06-13 11:21:34 +00:00
hardeningDisable = [ "format" ];
2018-07-25 21:44:21 +00:00
configureFlags = [
"--with-tcl=${tcl}/lib"
"--with-tk=${tk}/lib"
"--with-ngspice=${getBin ngspice}/bin/ngspice"
];
2018-06-13 11:21:34 +00:00
buildInputs = with xorg; [ cairo ghostscript libSM libXt libICE libX11 libXpm tcl tk zlib ];
meta = with lib; {
2018-06-13 11:21:34 +00:00
description = "Generic drawing program tailored to circuit diagrams";
homepage = "http://opencircuitdesign.com/xcircuit";
2018-06-13 11:21:34 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ spacefrogg thoughtpolice ];
2018-06-13 11:21:34 +00:00
};
}