summary refs log tree commit diff
path: root/pkgs/development/libraries/zeroc-ice
diff options
context:
space:
mode:
authorHarrison Houghton <hora.rhino@gmail.com>2021-08-09 21:41:58 -0400
committerHarrison Houghton <hora.rhino@gmail.com>2021-08-22 00:01:38 -0400
commit679c67ced8e8872ad0b6fe2ded6328b8973a1e73 (patch)
tree844a9928650a42b4582d3b121fff525c007ef4fd /pkgs/development/libraries/zeroc-ice
parent9608f26acff129d07ebe881e5c15b2684d074b7f (diff)
downloadnixpkgs-679c67ced8e8872ad0b6fe2ded6328b8973a1e73.tar
nixpkgs-679c67ced8e8872ad0b6fe2ded6328b8973a1e73.tar.gz
nixpkgs-679c67ced8e8872ad0b6fe2ded6328b8973a1e73.tar.bz2
nixpkgs-679c67ced8e8872ad0b6fe2ded6328b8973a1e73.tar.lz
nixpkgs-679c67ced8e8872ad0b6fe2ded6328b8973a1e73.tar.xz
nixpkgs-679c67ced8e8872ad0b6fe2ded6328b8973a1e73.tar.zst
nixpkgs-679c67ced8e8872ad0b6fe2ded6328b8973a1e73.zip
zeroc-ice: share meta definition and clarify license
Diffstat (limited to 'pkgs/development/libraries/zeroc-ice')
-rw-r--r--pkgs/development/libraries/zeroc-ice/3.6.nix8
-rw-r--r--pkgs/development/libraries/zeroc-ice/default.nix2
2 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/development/libraries/zeroc-ice/3.6.nix b/pkgs/development/libraries/zeroc-ice/3.6.nix
index b281cf9d43a..e8082e50447 100644
--- a/pkgs/development/libraries/zeroc-ice/3.6.nix
+++ b/pkgs/development/libraries/zeroc-ice/3.6.nix
@@ -1,6 +1,7 @@
 { stdenv, lib, fetchFromGitHub
 , mcpp, bzip2, expat, openssl, db5
 , darwin, libiconv, Security
+, zeroc-ice # to share meta
 , cpp11 ? false
 }:
 
@@ -54,10 +55,5 @@ stdenv.mkDerivation rec {
     rm -rf $out/share/slice
   '';
 
-  meta = with lib; {
-    homepage = "http://www.zeroc.com/ice.html";
-    description = "The internet communications engine";
-    license = licenses.gpl2;
-    platforms = platforms.unix;
-  };
+  inherit (zeroc-ice) meta;
 }
diff --git a/pkgs/development/libraries/zeroc-ice/default.nix b/pkgs/development/libraries/zeroc-ice/default.nix
index 746aea584e8..26a2ebf223f 100644
--- a/pkgs/development/libraries/zeroc-ice/default.nix
+++ b/pkgs/development/libraries/zeroc-ice/default.nix
@@ -67,7 +67,7 @@ in stdenv.mkDerivation rec {
   meta = with lib; {
     homepage = "https://www.zeroc.com/ice.html";
     description = "The internet communications engine";
-    license = licenses.gpl2;
+    license = licenses.gpl2Only;
     platforms = platforms.unix;
     maintainers = with maintainers; [ abbradar ];
   };