Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 627 B view raw
1{ 2 lib, 3 flutter329, 4 fetchFromGitHub, 5}: 6 7flutter329.buildFlutterApplication rec { 8 pname = "convertall"; 9 version = "1.0.2"; 10 11 src = fetchFromGitHub { 12 owner = "doug-101"; 13 repo = "ConvertAll"; 14 tag = "v${version}"; 15 hash = "sha256-esc2xhL0Jx5SaqM0GnnVzdtnSN9bX8zln66We/2RqoA="; 16 }; 17 18 pubspecLock = lib.importJSON ./pubspec.lock.json; 19 20 meta = { 21 homepage = "https://convertall.bellz.org"; 22 description = "Graphical unit converter"; 23 mainProgram = "convertall"; 24 license = lib.licenses.gpl2Plus; 25 maintainers = with lib.maintainers; [ orivej ]; 26 platforms = lib.platforms.linux; 27 }; 28}