about summary refs log tree commit diff
path: root/pkgs/applications/version-management/sublime-merge/default.nix
blob: a018a5e56ab25f6d9eebae395102049e13553a99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ callPackage }:

let
  common = opts: callPackage (import ./common.nix opts);
in {
  sublime-merge = common {
    buildVersion = "2077";
    x64sha256 = "6xgh/oSatTYHCnQEXiZAoHs3yI1iimLMtzCosBKBVp8=";
  } {};

  sublime-merge-dev = common {
    buildVersion = "2078";
    x64sha256 = "33oJOnsOUr9W+OGMetafaGtXUa+CHxxLjmtDoZliw0k=";
    dev = true;
  } {};
}