tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
zeroc-ice: share meta definition and clarify license
Harrison Houghton
4 years ago
679c67ce
9608f26a
+3
-7
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
zeroc-ice
3.6.nix
default.nix
+2
-6
pkgs/development/libraries/zeroc-ice/3.6.nix
reviewed
···
1
1
{ stdenv, lib, fetchFromGitHub
2
2
, mcpp, bzip2, expat, openssl, db5
3
3
, darwin, libiconv, Security
4
4
+
, zeroc-ice # to share meta
4
5
, cpp11 ? false
5
6
}:
6
7
···
54
55
rm -rf $out/share/slice
55
56
'';
56
57
57
57
-
meta = with lib; {
58
58
-
homepage = "http://www.zeroc.com/ice.html";
59
59
-
description = "The internet communications engine";
60
60
-
license = licenses.gpl2;
61
61
-
platforms = platforms.unix;
62
62
-
};
58
58
+
inherit (zeroc-ice) meta;
63
59
}
+1
-1
pkgs/development/libraries/zeroc-ice/default.nix
reviewed
···
67
67
meta = with lib; {
68
68
homepage = "https://www.zeroc.com/ice.html";
69
69
description = "The internet communications engine";
70
70
-
license = licenses.gpl2;
70
70
+
license = licenses.gpl2Only;
71
71
platforms = platforms.unix;
72
72
maintainers = with maintainers; [ abbradar ];
73
73
};