Skip to content

Commit fd97fa7

Browse files
committedSep 30, 2017
1 parent d2f4539 commit fd97fa7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

Diff for: ‎pkgs/applications/audio/streamripper/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
1515
homepage = http://streamripper.sourceforge.net/;
1616
description = "Application that lets you record streaming mp3 to your hard drive";
1717
license = licenses.gpl2;
18-
platforms = platforms.unix;
18+
platforms = platforms.linux;
1919
maintainers = with maintainers; [ the-kenny ];
2020
};
2121
}

Diff for: ‎pkgs/development/interpreters/racket/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,6 @@ stdenv.mkDerivation rec {
8282
homepage = http://racket-lang.org/;
8383
license = licenses.lgpl3;
8484
maintainers = with maintainers; [ kkallio henrytill vrthra ];
85-
platforms = platforms.x86_64;
85+
platforms = [ "x86_64-linux" ];
8686
};
8787
}

Diff for: ‎pkgs/development/tools/analysis/radare/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
3232
homepage = http://radare.org/;
3333
license = stdenv.lib.licenses.gpl2Plus;
3434
maintainers = with stdenv.lib.maintainers; [viric];
35-
platforms = with stdenv.lib.platforms; all;
35+
platforms = with stdenv.lib.platforms; linux;
3636
};
3737
}

Diff for: ‎pkgs/games/stockfish/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
2929
much stronger than the best human chess grandmasters.
3030
'';
3131
maintainers = with maintainers; [ luispedro peti ];
32-
platforms = with platforms; i686 ++ x86_64;
32+
platforms = ["x86_64-linux" "i686-linux"];
3333
license = licenses.gpl2;
3434
};
3535

0 commit comments

Comments
 (0)
Please sign in to comment.