repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127)
[NixPkgs.git]
/
pkgs
/
kde
/
misc
/
marknote
/
default.nix
blob
13043d6adffc73929ca9005643992768290f9d10
1
{
2
lib,
3
mkKdeDerivation,
4
fetchurl,
5
qtdeclarative,
6
qtsvg,
7
qtwayland,
8
}:
9
mkKdeDerivation rec {
10
pname = "marknote";
11
version = "1.3.0";
12
13
src = fetchurl {
14
url = "mirror://kde/stable/marknote/marknote-${version}.tar.xz";
15
hash = "sha256-/5lZhBWmzKWQDLTRDStypvOS6v4Hh0tuLrQun3qzvSg=";
16
};
17
18
extraBuildInputs = [
19
qtdeclarative
20
qtsvg
21
qtwayland
22
];
23
24
meta.license = [ lib.licenses.gpl2Plus ];
25
}