nixpkgs/pkgs/applications/editors/sublime/4/packages.nix
Jan Tojnar 6a3d82e433
sublime4: init at 4107
https://www.sublimetext.com/download

* works with my 7 year old license so far
* i686 is no longer supported
* aarch64 support has been added
* adds harware accelerated (needs libGL.so.1)
* adds python 3.8 plugin host (needs libssl.so and libcrypto.so)
2021-05-22 20:53:21 +02:00

20 lines
527 B
Nix

{ callPackage }:
let
common = opts: callPackage (import ./common.nix opts);
in
{
sublime4 = common {
buildVersion = "4107";
x64sha256 = "05ar7qd1d880442bx4w32mapsib7j27g9l96q2v2s7591r9fgnf7";
aarch64sha256 = "4MzwhZ17c6cYtlwPA+SBiey6GiVruADXOLJAeJlMrgM=";
} {};
sublime4-dev = common {
buildVersion = "4106";
dev = true;
x64sha256 = "09jnn52zb0mjxpj5xz4sixl34cr6j60x46c2dj1m0dlgxap0sh8x";
aarch64sha256 = "7blbeSZI0V6q89jMM+zi2ODEdoc1b3Am8F2b2jLr5O8=";
} {};
}