about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.4/extragear/filelight/default.nix
blob: c91fb13c86233aebedb0e0a0e10cbc9db314af31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, lib, cmake, qt4, perl, qimageblitz, kdelibs, kdebase_workspace,
automoc4, phonon}:

stdenv.mkDerivation {
  name = "filelight-1.9rc3";
  src = fetchurl {
    url = http://www.kde-apps.org/CONTENT/content-files/99561-filelight-1.9rc3.tgz;
    sha256 = "0ljyx23j4cvrsi1dvmxila82q2cd26barmcvc8qmr74kz6pj78sq";
  };
  buildInputs = [ cmake qt4 perl kdelibs kdebase_workspace automoc4 phonon 
    qimageblitz ];
  meta = {
    description = "Shows disk usage as an interactive map of concentric rings";
    license = "GPL";
    homepage = http://www.methylblue.com/filelight/;
    maintainers = [ lib.maintainers.viric ];
    platforms = with stdenv.lib.platforms; linux;
  };
}