2024-01-02 11:29:13 +00:00
|
|
|
{ mkDerivation, lib, qmake, fetchsvn }:
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2020-11-21 19:51:51 +00:00
|
|
|
mkDerivation rec {
|
2020-05-29 06:06:01 +00:00
|
|
|
pname = "xflr5";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "6.61";
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
sourceRoot = "${src.name}/xflr5";
|
|
|
|
src = fetchsvn {
|
|
|
|
url = "https://svn.code.sf.net/p/xflr5/code/trunk";
|
|
|
|
rev = "1480";
|
|
|
|
sha256 = "sha256-Uj6R15OT5i5tAJEYWqyFyN5Z51Wz5RjO26mWC3Y6QAI=";
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
|
2020-11-21 19:51:51 +00:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2020-11-21 19:51:51 +00:00
|
|
|
meta = with lib; {
|
2020-05-29 06:06:01 +00:00
|
|
|
description = "An analysis tool for airfoils, wings and planes";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "xflr5";
|
2021-12-06 16:07:01 +00:00
|
|
|
homepage = "https://sourceforge.net/projects/xflr5/";
|
2020-05-29 06:06:01 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.esclear ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2020-11-09 15:59:12 +00:00
|
|
|
}
|