mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 08:01:50 +00:00
13 lines
236 B
Nix
13 lines
236 B
Nix
{ kde, cmake, kdelibs, qt4, automoc4, phonon }:
|
|
|
|
kde.package {
|
|
buildInputs = [ cmake kdelibs qt4 automoc4 phonon ];
|
|
|
|
meta = {
|
|
description = "A KDE mathematical function plotter";
|
|
kde = {
|
|
name = "kmplot";
|
|
};
|
|
};
|
|
}
|