2e0589b4ca
Upstream changes to the build system required adjusting many packages' dependencies. On the Nixpkgs side, we no longer propagate the dependency on cmake (to reduce closure size), so downstream dependencies had to be adjusted for most packages that depend on kdelibs.
14 lines
380 B
Nix
14 lines
380 B
Nix
{ stdenv, fetchurl, automoc4, kdelibs, imlib, cmake, pkgconfig, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kuickshow-0.9.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://hosti.leonde.de/~gis/${name}.tar.bz2";
|
|
sha256 = "0l488a6p0ligbhv6p1lnx5k2d00x9bkkvms30winifa8rmisa9wl";
|
|
};
|
|
|
|
buildInputs = [ kdelibs imlib ];
|
|
|
|
nativeBuildInputs = [ automoc4 cmake gettext pkgconfig ];
|
|
}
|