Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 630 B view raw
1{ 2 mkDerivation, 3 lib, 4 qmake, 5 fetchsvn, 6}: 7 8mkDerivation rec { 9 pname = "xflr5"; 10 version = "6.61"; 11 12 sourceRoot = "${src.name}/xflr5"; 13 src = fetchsvn { 14 url = "https://svn.code.sf.net/p/xflr5/code/trunk"; 15 rev = "1480"; 16 sha256 = "sha256-Uj6R15OT5i5tAJEYWqyFyN5Z51Wz5RjO26mWC3Y6QAI="; 17 }; 18 19 nativeBuildInputs = [ qmake ]; 20 21 meta = with lib; { 22 description = "Analysis tool for airfoils, wings and planes"; 23 mainProgram = "xflr5"; 24 homepage = "https://sourceforge.net/projects/xflr5/"; 25 license = licenses.gpl3; 26 maintainers = [ maintainers.esclear ]; 27 platforms = platforms.linux; 28 }; 29}