depot/third_party/nixpkgs/pkgs/kde/misc/marknote/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

29 lines
490 B
Nix

{
lib,
mkKdeDerivation,
fetchurl,
kcrash,
qtdeclarative,
qtsvg,
qtwayland,
qqc2-desktop-style
}:
mkKdeDerivation rec {
pname = "marknote";
version = "1.2.1";
src = fetchurl {
url = "mirror://kde/stable/marknote/marknote-${version}.tar.xz";
hash = "sha256-HzImkm8l8Rqiuyq2QezfdqJ1hxIdLZhiIGVM9xzpyaA=";
};
extraBuildInputs = [
kcrash
qtdeclarative
qtsvg
qtwayland
qqc2-desktop-style
];
meta.license = [ lib.licenses.gpl2Plus ];
}