summary refs log tree commit diff
path: root/pkgs/applications/version-management/sublime-merge/default.nix
blob: dd9b07f7faf8ff9499e67150bcdb114203b50bb3 (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 = "2063";
    sha256 = "l6vxcOIQ3kQqNzLkf3PbuU3DpDfLh0tXCl/LnJsCt2k=";
  } {};

  sublime-merge-dev = common {
    buildVersion = "2055";
    sha256 = "0f5qmxs5cqgdp7gav223ibjwbcrh8bszk1yg1a6hpz8s8j3icvdi";
    dev = true;
  } {};
}