410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
16 lines
359 B
Nix
16 lines
359 B
Nix
{ callPackage }:
|
|
|
|
let
|
|
common = opts: callPackage (import ./common.nix opts);
|
|
in {
|
|
sublime-merge = common {
|
|
buildVersion = "2083";
|
|
x64sha256 = "bWHbP8j228jUDr1XDLRciq7hcET6o6Udr/lLODXRudc=";
|
|
} {};
|
|
|
|
sublime-merge-dev = common {
|
|
buildVersion = "2085";
|
|
x64sha256 = "40yI6EtP2l22aPP50an3ycvdEcAqJphhGhYYoOPyHw0=";
|
|
dev = true;
|
|
} {};
|
|
}
|