Adding KhinsiderDownloader

This commit is contained in:
Lyes Saadi 2025-08-03 20:22:54 +01:00
parent 4fc7c23d7d
commit d29398f6d5
Signed by: lyes
GPG key ID: 55A1D803917CF39A
4 changed files with 35 additions and 6 deletions

View file

@ -0,0 +1,27 @@
{
stdenv,
fetchFromGitHub,
cmake,
curl,
qt6,
libxml2
}:
stdenv.mkDerivation (final: {
pname = "KhinsiderDownloader";
version = "3.0.4.43";
src = fetchFromGitHub {
owner = "weespin";
repo = "KhinsiderDownloader";
rev = final.version;
hash = "sha256-hqoUkzPNxAIvC/7DL9YIMPmUZqAreqCbG8NKidVtSDM=";
};
nativeBuildInputs = [
cmake
curl
qt6.full
libxml2
];
})