mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
531e4b80c9
Only acts on one-line dependency lists.
26 lines
656 B
Nix
26 lines
656 B
Nix
{ fetchurl, stdenv, confuse, yajl, alsaLib, libpulseaudio, libnl, pkgconfig
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "i3status-2.11";
|
|
|
|
src = fetchurl {
|
|
url = "http://i3wm.org/i3status/${name}.tar.bz2";
|
|
sha256 = "0pwcy599fw8by1a1sf91crkqba7679qhvhbacpmhis8c1xrpxnwq";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ confuse yajl alsaLib libpulseaudio libnl ];
|
|
|
|
makeFlags = [ "all" "PREFIX=$(out)" ];
|
|
|
|
meta = {
|
|
description = "A tiling window manager";
|
|
homepage = http://i3wm.org;
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
|
|
}
|