blob: 9dbf1b7ddef1b619c5f0b7307e5b9029e9dc0c5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
buildDunePackage,
gtkspell3,
lablgtk3,
}:
buildDunePackage {
pname = "lablgtk3-gtkspell3";
buildInputs = [ gtkspell3 ] ++ lablgtk3.buildInputs;
propagatedBuildInputs = [ lablgtk3 ];
inherit (lablgtk3)
src
version
meta
nativeBuildInputs
;
}
|