nixpkgs/pkgs/applications/version-management/sublime-merge/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
359 B
Nix
Raw Normal View History

2019-04-05 01:58:02 +00:00
{ callPackage }:
let
common = opts: callPackage (import ./common.nix opts);
in {
sublime-merge = common {
2022-11-14 14:50:39 +00:00
buildVersion = "2079";
x64sha256 = "y4ocLXxxEkGaw9O/vhX9MJnc56QgK37YPJkUwK2YS0U=";
2019-04-05 01:58:02 +00:00
} {};
sublime-merge-dev = common {
2022-11-09 16:58:15 +00:00
buildVersion = "2078";
x64sha256 = "33oJOnsOUr9W+OGMetafaGtXUa+CHxxLjmtDoZliw0k=";
2019-04-05 01:58:02 +00:00
dev = true;
} {};
}