depot/third_party/nixpkgs/pkgs/kde/misc/marknote/default.nix

28 lines
469 B
Nix
Raw Normal View History

{
lib,
mkKdeDerivation,
fetchurl,
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 = [
qtdeclarative
qtsvg
qtwayland
qqc2-desktop-style
];
meta.license = [ lib.licenses.gpl2Plus ];
}