summary refs log tree commit diff
path: root/pkgs/development/libraries/vcdimager
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-04-30 17:43:54 -0500
committerWill Dietz <w@wdtz.org>2018-04-30 18:08:48 -0500
commit855e0463abe182e4cb481db8246ae5cd029c1298 (patch)
treed4d825e995a2e79ce19ebb1e1dd5efc8a3859213 /pkgs/development/libraries/vcdimager
parenta2c94b7f5c894a21c268623b4938b039b57a02f1 (diff)
downloadnixpkgs-855e0463abe182e4cb481db8246ae5cd029c1298.tar
nixpkgs-855e0463abe182e4cb481db8246ae5cd029c1298.tar.gz
nixpkgs-855e0463abe182e4cb481db8246ae5cd029c1298.tar.bz2
nixpkgs-855e0463abe182e4cb481db8246ae5cd029c1298.tar.lz
nixpkgs-855e0463abe182e4cb481db8246ae5cd029c1298.tar.xz
nixpkgs-855e0463abe182e4cb481db8246ae5cd029c1298.tar.zst
nixpkgs-855e0463abe182e4cb481db8246ae5cd029c1298.zip
tree-wide: platforms = platforms.gnu; -> platforms = gnu ++ linux
"platforms.gnu" has been linux-only since at least 17.03:

$ nix eval -f channel:nixos-17.03 lib.platforms.gnu
[ "i686-linux" "x86_64-linux" "armv5tel-linux" "armv6l-linux" "armv7l-linux" "aarch64-linux" "mips64el-linux" ]

Unlike platforms.linux, platforms.gnu indicates "must use glibc"
which for the most part is not intended.

Replacing platforms.gnu with platforms.linux would be the same "today"
but let's err on preserving existing behavior and be optimistic
about platforms these packages work on.
Diffstat (limited to 'pkgs/development/libraries/vcdimager')
-rw-r--r--pkgs/development/libraries/vcdimager/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/vcdimager/default.nix b/pkgs/development/libraries/vcdimager/default.nix
index 48ad33424f6..77956be3b12 100644
--- a/pkgs/development/libraries/vcdimager/default.nix
+++ b/pkgs/development/libraries/vcdimager/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     homepage = http://www.gnu.org/software/vcdimager/;
     description = "Full-featured mastering suite for authoring, disassembling and analyzing Video CDs and Super Video CDs";
-    platforms = platforms.gnu; # random choice
+    platforms = platforms.gnu ++ platforms.linux; # random choice
     license = licenses.gpl2;
   };
 }