b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
26 lines
657 B
Nix
26 lines
657 B
Nix
{ fetchurl, stdenv, confuse, yajl, alsaLib, libpulseaudio, libnl, pkgconfig
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "i3status-2.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://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;
|
|
};
|
|
|
|
}
|