File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
pkgs/by-name/do/dotherside Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments