Skip to content

Commit b1ec7fd

Browse files
authored
dotherside: init at 0.9.0 (#377190)
2 parents 267f157 + 4274ff3 commit b1ec7fd

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
stdenv,
3+
lib,
4+
fetchFromGitHub,
5+
cmake,
6+
libsForQt5,
7+
}:
8+
9+
stdenv.mkDerivation (finalAttrs: {
10+
pname = "dotherside";
11+
version = "0.9.0";
12+
13+
outputs = [
14+
"out"
15+
"dev"
16+
];
17+
18+
src = fetchFromGitHub {
19+
owner = "filcuc";
20+
repo = "dotherside";
21+
tag = "v${finalAttrs.version}";
22+
hash = "sha256-o6RMjJz9vtfCsm+F9UYIiYPEaQn+6EU5jOTLhNHCwo4=";
23+
};
24+
25+
buildInputs = [
26+
libsForQt5.qtbase
27+
libsForQt5.qtquickcontrols2
28+
];
29+
30+
nativeBuildInputs = [
31+
cmake
32+
libsForQt5.wrapQtAppsHook
33+
];
34+
35+
meta = with lib; {
36+
description = "C language library for creating bindings for the Qt QML language";
37+
homepage = "https://filcuc.github.io/dotherside";
38+
license = licenses.lgpl3Plus;
39+
platforms = platforms.linux;
40+
maintainers = with maintainers; [ toastal ];
41+
};
42+
})

0 commit comments

Comments
 (0)