Skip to content

Commit 9b2970f

Browse files
ndowensglobin
ndowens
authored andcommittedMar 23, 2017
awesomewm: 4.0 -> 4.1
(cherry picked from commit 6a851cd)
1 parent 6b9a2f6 commit 9b2970f

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed
 

Diff for: ‎pkgs/applications/window-managers/awesome/default.nix

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ stdenv, fetchurl, luaPackages, cairo, cmake, imagemagick, pkgconfig, gdk_pixbuf
1+
{ stdenv, fetchurl, fetchFromGitHub, luaPackages, cairo, cmake, imagemagick, pkgconfig, gdk_pixbuf
22
, xorg, libstartup_notification, libxdg_basedir, libpthreadstubs
33
, xcb-util-cursor, makeWrapper, pango, gobjectIntrospection, unclutter
44
, compton, procps, iproute, coreutils, curl, alsaUtils, findutils, xterm
@@ -9,10 +9,13 @@
99

1010
with luaPackages; stdenv.mkDerivation rec {
1111
name = "awesome-${version}";
12-
version = "4.0";
13-
src = fetchurl {
14-
url = "http://github.com/awesomeWM/awesome-releases/raw/master/${name}.tar.xz";
15-
sha256 = "0czkcz67sab63gf5m2p2pgg05yinjx60hfb9rfyzdkkg28q9f02w";
12+
version = "4.1";
13+
14+
src = fetchFromGitHub {
15+
owner = "awesomewm";
16+
repo = "awesome";
17+
rev = "v${version}";
18+
sha256 = "1qik8h5nwjq4535lpdpal85vas1k7am3s6l5r763kpdzxhfcyyaj";
1619
};
1720

1821
nativeBuildInputs = [
@@ -22,8 +25,10 @@ with luaPackages; stdenv.mkDerivation rec {
2225
imagemagick
2326
makeWrapper
2427
pkgconfig
25-
xmlto docbook_xml_dtd_45 docbook_xsl findXMLCatalogs
28+
xmlto docbook_xml_dtd_45
29+
docbook_xsl findXMLCatalogs
2630
];
31+
2732
propagatedUserEnvPkgs = [ hicolor_icon_theme ];
2833
buildInputs = [ cairo dbus gdk_pixbuf gobjectIntrospection
2934
git lgi libpthreadstubs libstartup_notification

0 commit comments

Comments
 (0)
Please sign in to comment.