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

17 lines
369 B
Nix
Raw Normal View History

2019-04-04 18:58:02 -07:00
{ callPackage }:
let
common = opts: callPackage (import ./common.nix opts);
in {
sublime-merge = common {
2020-09-02 06:49:56 -07:00
buildVersion = "2033";
sha256 = "1ym806df2hsw1ml932mshlw7cdxfi6jwa3mkh5m7gbmn7qwpm4xb";
2019-04-04 18:58:02 -07:00
} {};
sublime-merge-dev = common {
2020-09-02 06:49:44 -07:00
buildVersion = "2031";
sha256 = "1vv3qcggicy5fb4nm2k5a6nw1f20cwxgrmn3xv2dvgx7mpzbhknp";
2019-04-04 18:58:02 -07:00
dev = true;
} {};
}