summary refs log tree commit diff
path: root/pkgs/applications/science/physics/xflr5/default.nix
blob: 5ae56528f9644dd54d9d2b19276f7a424f69afde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, lib, fetchurl, qmake }:

mkDerivation rec {
  pname = "xflr5";
  version = "6.47";

  src = fetchurl {
    url = "mirror://sourceforge/xflr5/${pname}_v${version}_src.tar.gz";
    sha256 = "02x3r9iv3ndwxa65mxn9m5dlhcrnjiq7cffi6rmb456gs3v3dnav";
  };

  enableParallelBuilding = true;

  nativeBuildInputs = [ qmake ];

  meta = with lib; {
    description = "An analysis tool for airfoils, wings and planes";
    homepage = https://sourceforge.net/projects/xflr5/;
    license = licenses.gpl3;
    maintainers = [ maintainers.esclear ];
    platforms = platforms.linux;
  };
}