Commit 278086ed authored by Weijia Wang's avatar Weijia Wang
Browse files

treewide: fix platforms

parent efb74057
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -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 ];
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -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" ];
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -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;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -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 ];
  };
}
Loading