Skip to content

Commit

Permalink
dwm: 6.0 -> 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasbeyer committed Nov 12, 2015
1 parent 03959d4 commit 050b462
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/applications/window-managers/dwm/default.nix
@@ -1,17 +1,17 @@
{stdenv, fetchurl, libX11, libXinerama, patches ? []}:
{stdenv, fetchurl, libX11, libXinerama, libXft, patches ? []}:

let
name = "dwm-6.0";
name = "dwm-6.1";
in
stdenv.mkDerivation {
inherit name;

src = fetchurl {
url = "http://dl.suckless.org/dwm/${name}.tar.gz";
sha256 = "0mpbivy9j80l1jqq4bd4g4z8s5c54fxrjj44avmfwncjwqylifdj";
sha256 = "1zkmwb6df6m254shx06ly90c0q4jl70skk1pvkixpb7hcxhwbxn2";
};

buildInputs = [ libX11 libXinerama ];
buildInputs = [ libX11 libXinerama libXft ];

prePatch = ''sed -i "s@/usr/local@$out@" config.mk'';

Expand Down

0 comments on commit 050b462

Please sign in to comment.