blob: 13043d6adffc73929ca9005643992768290f9d10 (
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
|
{
lib,
mkKdeDerivation,
fetchurl,
qtdeclarative,
qtsvg,
qtwayland,
}:
mkKdeDerivation rec {
pname = "marknote";
version = "1.3.0";
src = fetchurl {
url = "mirror://kde/stable/marknote/marknote-${version}.tar.xz";
hash = "sha256-/5lZhBWmzKWQDLTRDStypvOS6v4Hh0tuLrQun3qzvSg=";
};
extraBuildInputs = [
qtdeclarative
qtsvg
qtwayland
];
meta.license = [ lib.licenses.gpl2Plus ];
}
|