43 lines
688 B
Nix
43 lines
688 B
Nix
{
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
curl,
|
|
libxml2,
|
|
qtbase,
|
|
wrapQtAppsHook,
|
|
qtscxml,
|
|
qtquicktimeline,
|
|
qtquickeffectmaker,
|
|
qtnetworkauth,
|
|
qttools,
|
|
}:
|
|
|
|
stdenv.mkDerivation (final: {
|
|
pname = "KhinsiderDownloader";
|
|
version = "3.0.4.43";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "weespin";
|
|
repo = "KhinsiderDownloader";
|
|
rev = final.version;
|
|
hash = "sha256-hqoUkzPNxAIvC/7DL9YIMPmUZqAreqCbG8NKidVtSDM=";
|
|
};
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
curl
|
|
# qt6.env
|
|
qtscxml
|
|
# qtquick3d
|
|
# qtquick3dphysics
|
|
qtquicktimeline
|
|
qtquickeffectmaker
|
|
qtnetworkauth
|
|
qttools
|
|
libxml2
|
|
wrapQtAppsHook
|
|
];
|
|
})
|