treewide: fix platforms

main
Weijia Wang 2 years ago
parent efb7405702
commit 278086eddb
  1. 2
      pkgs/applications/audio/ssrc/default.nix
  2. 2
      pkgs/applications/misc/masterpdfeditor/default.nix
  3. 2
      pkgs/applications/misc/masterpdfeditor4/default.nix
  4. 2
      pkgs/applications/radio/welle-io/default.nix
  5. 2
      pkgs/applications/science/biology/spades/default.nix
  6. 2
      pkgs/development/compilers/bupc/default.nix
  7. 2
      pkgs/development/compilers/dale/default.nix
  8. 2
      pkgs/development/compilers/gnatboot/default.nix
  9. 2
      pkgs/development/libraries/libwhereami/default.nix
  10. 2
      pkgs/games/keeperrl/default.nix
  11. 2
      pkgs/games/tome4/default.nix
  12. 2
      pkgs/tools/security/b2sum/default.nix

@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
homepage = "http://shibatch.sourceforge.net/";
license = licenses.gpl2;
maintainers = with maintainers; [ leenaars];
platforms = with platforms; [ linux ] ;
platforms = platforms.linux;
};
}

@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
homepage = "https://code-industry.net/free-pdf-editor/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfreeRedistributable;
platforms = with platforms; [ "x86_64-linux" ];
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ cmcdragonkai ];
};
}

@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
homepage = "https://code-industry.net/free-pdf-editor/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfreeRedistributable;
platforms = with platforms; [ "x86_64-linux" ];
platforms = [ "x86_64-linux" ];
};
}

@ -41,6 +41,6 @@ mkDerivation rec {
homepage = "https://www.welle.io/";
maintainers = with maintainers; [ ck3d markuskowa ];
license = licenses.gpl2Only;
platforms = with platforms; [ "x86_64-linux" "i686-linux" ] ++ darwin;
platforms = [ "x86_64-linux" "i686-linux" ] ++ platforms.darwin;
};
}

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "St. Petersburg genome assembler: assembly toolkit containing various assembly pipelines";
license = licenses.gpl2Only;
homepage = "http://cab.spbu.ru/software/spades/";
platforms = with platforms; [ "x86_64-linux" "x86_64-darwin"];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = [ maintainers.bzizou ];
};
}

@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://upc.lbl.gov/";
license = licenses.mit;
platforms = with platforms; [ linux ];
platforms = platforms.linux;
maintainers = with maintainers; [ zimbatm ];
};
}

@ -36,7 +36,7 @@ stdenv.mkDerivation {
homepage = "https://github.com/tomhrr/dale";
license = licenses.bsd3;
maintainers = with maintainers; [ amiloradovsky ];
platforms = with platforms; [ "i686-linux" "x86_64-linux" ];
platforms = [ "i686-linux" "x86_64-linux" ];
# failed on Darwin: linker couldn't find the FFI lib
# failed on AArch64: because LLVM 3.5 is failed there
};

@ -46,6 +46,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.gnu.org/software/gnat";
license = licenses.gpl3;
maintainers = with maintainers; [ ethindp ];
platforms = with platforms; [ "x86_64-linux" ];
platforms = [ "x86_64-linux" ];
};
}

@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
description = "Library to report hypervisor information from inside a VM";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
platforms = with platforms; [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; # fails on aarch64
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; # fails on aarch64
};
}

@ -70,6 +70,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2;
maintainers = with maintainers; [ ];
# TODO: Add OS X
platforms = with platforms; [ "i686-linux" "x86_64-linux" ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}

@ -71,6 +71,6 @@ stdenv.mkDerivation rec {
homepage = "https://te4.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
platforms = with platforms; [ "i686-linux" "x86_64-linux" ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}

@ -26,6 +26,6 @@ stdenv.mkDerivation {
license = with licenses; [ asl20 cc0 openssl ];
maintainers = with maintainers; [ kirelagin ];
# "This code requires at least SSE2."
platforms = with platforms; [ "x86_64-linux" "i686-linux" ] ++ darwin;
platforms = [ "x86_64-linux" "i686-linux" ] ++ platforms.darwin;
};
}

Loading…
Cancel
Save