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

mkDerivation rec {
  pname = "xflr5";
  version = "6.61";
  src = fetchzip {
    url = "https://sourceforge.net/code-snapshots/svn/x/xf/xflr5/code/xflr5-code-r1481-tags-v6.61-xflr5.zip";
    sha256 = "sha256-voWnXiBo7+kBPiZLVpSiXyBsYJv/Phd3noA81SQ5Vtw=";
  };

  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;
  };
}