nixpkgs/pkgs/development/libraries/kde-frameworks/kemoticons.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
265 B
Nix
Raw Normal View History

{
mkDerivation,
extra-cmake-modules,
karchive, kcoreaddons, kservice, qtbase,
2016-04-21 18:32:21 +03:00
}:
mkDerivation {
2022-02-23 20:28:27 +03:00
pname = "kemoticons";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ karchive kcoreaddons ];
propagatedBuildInputs = [ kservice qtbase ];
2016-04-21 18:32:21 +03:00
}