mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ocs-url: init at 3.1.0
This package is used by DE store pages to one click install themes/fonts and other assets. Signed-off-by: Soham S Gumaste <sgumas2@uic.edu>
This commit is contained in:
parent
44fbd03e79
commit
1087880e0b
@ -14604,6 +14604,7 @@
|
||||
email = "sohamg2@gmail.com";
|
||||
name = "Soham S Gumaste";
|
||||
github = "SohamG";
|
||||
githubId = 7116239;
|
||||
keys = [{
|
||||
fingerprint = "E067 520F 5EF2 C175 3F60 50C0 BA46 725F 6A26 7442";
|
||||
}];
|
||||
|
43
pkgs/tools/misc/ocs-url/default.nix
Normal file
43
pkgs/tools/misc/ocs-url/default.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -1244,6 +1244,8 @@ with pkgs;
|
||||
|
||||
nominatim = callPackage ../servers/nominatim { };
|
||||
|
||||
ocs-url = libsForQt5.callPackage ../tools/misc/ocs-url { };
|
||||
|
||||
pferd = callPackage ../tools/misc/pferd {};
|
||||
|
||||
qFlipper = libsForQt515.callPackage ../tools/misc/qflipper { };
|
||||
|
Loading…
Reference in New Issue
Block a user