pcb2gcode: 2.4.0 -> 2.5.0

Changelog:
https://github.com/pcb2gcode/pcb2gcode/releases/tag/v2.5.0
This commit is contained in:
Thomas Gerbet 2023-04-26 13:40:12 +02:00
parent 9438f884ee
commit 6c77413264

View file

@ -9,29 +9,19 @@
, gerbv
, librsvg
, bash
, fetchpatch
}:
stdenv.mkDerivation rec {
pname = "pcb2gcode";
version = "2.4.0";
version = "2.5.0";
src = fetchFromGitHub {
owner = "pcb2gcode";
repo = "pcb2gcode";
rev = "v${version}";
sha256 = "sha256-3VQlYtSi6yWWNuxTlBzvBtkM5hAss47xat+sEW+P79E=";
hash = "sha256-c5YabBqZn6ilIkF3lifTsYyLZMsZN21jDj1hNu0PRAc=";
};
patches = [
# the patch below is part of upstream mainline, we can remove this
# when they make their next release
(fetchpatch {
url = "https://github.com/pcb2gcode/pcb2gcode/commit/01cd18a6d859ab1aac6c532c99be9109f083448d.patch";
sha256 = "sha256-5hl8KsDxSWMzXS3oRG0fBfHFq0IpZ//sU8lfY9Yp8L0=";
})
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ boost glibmm gtkmm2 gerbv librsvg ];