mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 00:49:52 +00:00
14 lines
295 B
Nix
14 lines
295 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdetoys-4.0.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.0.0/src/kdetoys-4.0.0.tar.bz2;
|
|
sha256 = "0j7kk4ripg2sw4m8ym96aiyi8rsfb4p7kqp9kmik850flqighhsk";
|
|
};
|
|
|
|
propagatedBuildInputs = [kdeworkspace];
|
|
buildInputs = [cmake];
|
|
}
|