mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
commit
ed25a12070
23
pkgs/applications/science/physics/xflr5/default.nix
Normal file
23
pkgs/applications/science/physics/xflr5/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, lib, fetchurl, wrapQtAppsHook, qmake }:
|
||||||
|
|
||||||
|
stdenv.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 wrapQtAppsHook ];
|
||||||
|
|
||||||
|
meta = with stdenv.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;
|
||||||
|
};
|
||||||
|
}
|
@ -24842,6 +24842,8 @@ in
|
|||||||
|
|
||||||
xfitter = callPackage ../applications/science/physics/xfitter {};
|
xfitter = callPackage ../applications/science/physics/xfitter {};
|
||||||
|
|
||||||
|
xflr5 = libsForQt5.callPackage ../applications/science/physics/xflr5 { };
|
||||||
|
|
||||||
### SCIENCE/PROGRAMMING
|
### SCIENCE/PROGRAMMING
|
||||||
|
|
||||||
dafny = dotnetPackages.Dafny;
|
dafny = dotnetPackages.Dafny;
|
||||||
|
Loading…
Reference in New Issue
Block a user