xcircuit: 3.10.12 -> 3.10.37, maintain

This commit is contained in:
John Shaffer 2022-12-02 19:22:26 -06:00 committed by Austin Seipp
parent c8e95c01f0
commit 9d8767be46

View file

@ -1,13 +1,15 @@
{ lib, stdenv, fetchurl, autoreconfHook, automake, pkg-config
{ lib, stdenv, fetchFromGitHub, autoreconfHook, automake, pkg-config
, cairo, ghostscript, ngspice, tcl, tk, xorg, zlib }:
stdenv.mkDerivation rec {
version = "3.10.12";
version = "3.10.37";
pname = "xcircuit";
src = fetchurl {
url = "http://opencircuitdesign.com/xcircuit/archive/xcircuit-${version}.tgz";
sha256 = "1h1ywc3mr7plvwnhdii2zgnnv5ih2nhyl4qbdjpi83dq0aq1s2mn";
src = fetchFromGitHub {
owner = "RTimothyEdwards";
repo = "XCircuit";
rev = "0056213308c92bec909e8469a0fa1515b72fc3d2";
sha256 = "sha256-LXU5VEkLF1aKYz9ynI1qQjJUwt/zKFMPYj153OgJOOI=";
};
nativeBuildInputs = [ autoreconfHook automake pkg-config ];
@ -26,6 +28,6 @@ stdenv.mkDerivation rec {
homepage = "http://opencircuitdesign.com/xcircuit";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ spacefrogg thoughtpolice ];
maintainers = with maintainers; [ john-shaffer spacefrogg thoughtpolice ];
};
}