2023-12-20 22:02:48 +03:00
|
|
|
{ mkDerivation, lib, qmake, fetchsvn }:
|
2019-10-05 22:25:09 +03:00
|
|
|
|
2020-11-05 19:07:41 +03:00
|
|
|
mkDerivation rec {
|
2019-10-05 22:25:09 +03:00
|
|
|
pname = "xflr5";
|
2023-11-20 20:43:36 +03:00
|
|
|
version = "6.61";
|
2023-12-20 22:02:48 +03:00
|
|
|
|
|
|
|
sourceRoot = "${src.name}/xflr5";
|
|
|
|
src = fetchsvn {
|
|
|
|
url = "https://svn.code.sf.net/p/xflr5/code/trunk";
|
|
|
|
rev = "1480";
|
|
|
|
sha256 = "sha256-Uj6R15OT5i5tAJEYWqyFyN5Z51Wz5RjO26mWC3Y6QAI=";
|
2019-10-05 22:25:09 +03:00
|
|
|
};
|
|
|
|
|
2020-11-05 19:07:41 +03:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2019-10-05 22:25:09 +03:00
|
|
|
|
2020-11-05 19:07:41 +03:00
|
|
|
meta = with lib; {
|
2019-10-05 22:25:09 +03:00
|
|
|
description = "An analysis tool for airfoils, wings and planes";
|
2021-11-10 13:37:56 +03:00
|
|
|
homepage = "https://sourceforge.net/projects/xflr5/";
|
2019-10-05 22:25:09 +03:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.esclear ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2020-11-06 02:28:15 +03:00
|
|
|
}
|