nixpkgs/pkgs/applications/science/physics/xflr5/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
597 B
Nix
Raw Normal View History

{ mkDerivation, lib, qmake, fetchsvn }:
2019-10-05 22:25:09 +03:00
mkDerivation rec {
2019-10-05 22:25:09 +03:00
pname = "xflr5";
version = "6.61";
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
};
nativeBuildInputs = [ qmake ];
2019-10-05 22:25:09 +03:00
meta = with lib; {
2019-10-05 22:25:09 +03:00
description = "An analysis tool for airfoils, wings and planes";
homepage = "https://sourceforge.net/projects/xflr5/";
2019-10-05 22:25:09 +03:00
license = licenses.gpl3;
maintainers = [ maintainers.esclear ];
platforms = platforms.linux;
};
}