nixpkgs-suyu/pkgs/applications/science/electronics/qfsm/default.nix

30 lines
702 B
Nix
Raw Normal View History

2012-11-11 20:32:41 +01:00
{ stdenv, fetchurl, qt4, cmake, graphviz, pkgconfig }:
stdenv.mkDerivation rec {
2015-05-23 23:03:38 +02:00
name = "qfsm-0.54.0";
2012-11-11 20:32:41 +01:00
src = fetchurl {
url = "mirror://sourceforge/qfsm/${name}-Source.tar.bz2";
2015-05-23 23:03:38 +02:00
sha256 = "0rl7bc5cr29ng67yij4akciyid9z7npal812ys4c3m229vjvflrb";
2012-11-11 20:32:41 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ qt4 cmake graphviz ];
2012-11-11 20:32:41 +01:00
2017-09-11 20:26:24 +02:00
patches = [
./drop-hardcoded-prefix.patch
./gcc6-fixes.patch
];
2012-11-11 20:32:41 +01:00
2016-08-27 23:53:49 +02:00
hardeningDisable = [ "format" ];
2012-11-11 20:32:41 +01:00
enableParallelBuilding = true;
meta = {
description = "Graphical editor for finite state machines";
homepage = http://qfsm.sourceforge.net/;
2012-11-11 20:32:41 +01:00
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.unix;
2012-11-11 20:32:41 +01:00
};
}