about summary refs log tree commit diff
path: root/pkgs/kde/misc/marknote/default.nix
blob: 0f676c6fb07ef7fa95575ebaa93e2045b939e499 (plain) (blame)
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,
  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 ];
}