summaryrefslogtreecommitdiff
path: root/pkgs/kde/misc/marknote/default.nix
blob: b2698552c4577a26c4442f9531349561eff6ed2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  lib,
  mkKdeDerivation,
  fetchurl,
  qtdeclarative,
  qtsvg,
  qtwayland,
  kxmlgui,
}:
mkKdeDerivation rec {
  pname = "marknote";
  version = "1.4.1";

  src = fetchurl {
    url = "mirror://kde/stable/marknote/marknote-${version}.tar.xz";
    hash = "sha256-lsL1UcPZoJzbwtbMJC5ks6nIEd9/KUENW4WHHsKtJ5k=";
  };

  extraBuildInputs = [
    qtdeclarative
    qtsvg
    qtwayland
    kxmlgui
  ];

  meta.license = [ lib.licenses.gpl2Plus ];
}