stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127)
[NixPkgs.git] / pkgs / kde / misc / marknote / default.nix
blob13043d6adffc73929ca9005643992768290f9d10
2   lib,
3   mkKdeDerivation,
4   fetchurl,
5   qtdeclarative,
6   qtsvg,
7   qtwayland,
8 }:
9 mkKdeDerivation rec {
10   pname = "marknote";
11   version = "1.3.0";
13   src = fetchurl {
14     url = "mirror://kde/stable/marknote/marknote-${version}.tar.xz";
15     hash = "sha256-/5lZhBWmzKWQDLTRDStypvOS6v4Hh0tuLrQun3qzvSg=";
16   };
18   extraBuildInputs = [
19     qtdeclarative
20     qtsvg
21     qtwayland
22   ];
24   meta.license = [ lib.licenses.gpl2Plus ];