44 lines
957 B
Nix
44 lines
957 B
Nix
|
{ lib, stdenv, fetchgit, libsForQt5 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "ocs-url";
|
||
|
version = "3.1.0";
|
||
|
|
||
|
srcs = [
|
||
|
(fetchgit {
|
||
|
url = "https://www.opencode.net/dfn2/ocs-url.git";
|
||
|
rev = "release-${version}";
|
||
|
sha256 = "RvbkcSj8iUAHAEOyETwfH+3XnCCY/p8XM8LgVrZxrws=";
|
||
|
})
|
||
|
|
||
|
(fetchgit {
|
||
|
url = "https://github.com/akiraohgaki/qtil";
|
||
|
rev = "v0.4.0";
|
||
|
sha256 = "XRSp0F7ggfkof1RNAnQU3+O9DcXDy81VR7NakITOXrw=";
|
||
|
})
|
||
|
];
|
||
|
|
||
|
sourceRoot = "ocs-url";
|
||
|
|
||
|
buildInputs = with libsForQt5.qt5; [
|
||
|
qtbase
|
||
|
qtsvg
|
||
|
qtquickcontrols
|
||
|
qmake
|
||
|
wrapQtAppsHook
|
||
|
];
|
||
|
|
||
|
# We are NOT in $sourceRoot here
|
||
|
postUnpack = ''
|
||
|
mkdir -p $sourceRoot/lib/qtil
|
||
|
cp -r qtil/* $sourceRoot/lib/qtil/
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Open Collaboration System for use with DE store websites";
|
||
|
license = licenses.gpl3Only;
|
||
|
maintainers = with maintainers; [ SohamG ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|