summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/brackets
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2016-10-21 19:42:57 -0400
committerTim Steinbach <tim@nequissimus.com>2016-10-21 19:42:57 -0400
commite4a649194227fd1fd34fe635089e5c0e5ccf8b5e (patch)
tree9fc6a68ff87eba116bff0c8a113e696412620e7d /pkgs/applications/editors/brackets
parent20383d26066d7c99ce721a020d5ea3552d24042d (diff)
brackets: 1.5 -> 1.7
Diffstat (limited to 'pkgs/applications/editors/brackets')
-rw-r--r--pkgs/applications/editors/brackets/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/brackets/default.nix b/pkgs/applications/editors/brackets/default.nix
index 4237ce73f21c..e9f36b19195d 100644
--- a/pkgs/applications/editors/brackets/default.nix
+++ b/pkgs/applications/editors/brackets/default.nix
@@ -4,22 +4,22 @@ let
bracketsEnv = buildEnv {
name = "env-brackets";
paths = [
- gtk2 glib gdk_pixbuf stdenv.cc.cc alsaLib nss nspr gconf cups libgcrypt_1_5
- dbus systemd.lib
+ gtk2 glib gdk_pixbuf stdenv.cc.cc.lib alsaLib nss nspr gconf cups libgcrypt_1_5
+ dbus.lib systemd.lib
];
};
in
stdenv.mkDerivation rec {
name = "brackets-${version}";
- version = "1.5";
+ version = "1.7";
src = fetchurl {
url = "https://github.com/adobe/brackets/releases/download/release-${version}/Brackets.Release.${version}.64-bit.deb";
- sha256 = "1fc8wvh9wbcydd1sw20yfnwlfv7nllb6vrssr6hgn80m7i0zl3db";
+ sha256 = "0nsiy3gvp8rd71a0misf6v1kz067kxnszr5mpch9fj4jqmg6nj8m";
name = "${name}.deb";
};
- phases = [ "installPhase" ];
+ phases = [ "installPhase" "fixupPhase" ];
buildInputs = [ makeWrapper ];