about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2019-02-14 21:47:37 +0100
committerGitHub <noreply@github.com>2019-02-14 21:47:37 +0100
commitb2e2fe821918a664b13774171deb767635a2b9f2 (patch)
tree45102fb650a2dccc600fd01f28f702322b142716 /pkgs/development/compilers
parent8cce3cf2389a81d588f6518283985b6d2cc29ff9 (diff)
parente64a9f006f0bde879bc0ab7570005c546986a428 (diff)
downloadnixlib-b2e2fe821918a664b13774171deb767635a2b9f2.tar
nixlib-b2e2fe821918a664b13774171deb767635a2b9f2.tar.gz
nixlib-b2e2fe821918a664b13774171deb767635a2b9f2.tar.bz2
nixlib-b2e2fe821918a664b13774171deb767635a2b9f2.tar.lz
nixlib-b2e2fe821918a664b13774171deb767635a2b9f2.tar.xz
nixlib-b2e2fe821918a664b13774171deb767635a2b9f2.tar.zst
nixlib-b2e2fe821918a664b13774171deb767635a2b9f2.zip
Merge pull request #55618 from zachcoyle/gnu-cobol-enable-darwin
gnu-cobol: enable on darwin
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/gnu-cobol/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gnu-cobol/default.nix b/pkgs/development/compilers/gnu-cobol/default.nix
index 3ac14565946c..ae27964ae8f0 100644
--- a/pkgs/development/compilers/gnu-cobol/default.nix
+++ b/pkgs/development/compilers/gnu-cobol/default.nix
@@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
     homepage = https://sourceforge.net/projects/open-cobol/;
     license = licenses.gpl3;
     maintainers = with maintainers; [ ericsagnes the-kenny ];
-    platforms = platforms.linux;
+    platforms = with platforms; linux ++ darwin;
   };
 }