Merge staging-next into staging
This commit is contained in:
commit
80f198ff3a
@ -162,7 +162,7 @@ required to build a rust package. A simple fix is to use:
|
|||||||
|
|
||||||
```nix
|
```nix
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
cp ${./Cargo.lock} Cargo.lock
|
ln -s ${./Cargo.lock} Cargo.lock
|
||||||
'';
|
'';
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -2409,12 +2409,6 @@
|
|||||||
githubId = 91694;
|
githubId = 91694;
|
||||||
name = "Javier Candeira";
|
name = "Javier Candeira";
|
||||||
};
|
};
|
||||||
candyc1oud = {
|
|
||||||
email = "candyc1oud@outlook.com";
|
|
||||||
github = "candyc1oud";
|
|
||||||
githubId = 113157395;
|
|
||||||
name = "Candy Cloud";
|
|
||||||
};
|
|
||||||
canndrew = {
|
canndrew = {
|
||||||
email = "shum@canndrew.org";
|
email = "shum@canndrew.org";
|
||||||
github = "canndrew";
|
github = "canndrew";
|
||||||
@ -3395,6 +3389,11 @@
|
|||||||
githubId = 1298344;
|
githubId = 1298344;
|
||||||
name = "Daniel Fullmer";
|
name = "Daniel Fullmer";
|
||||||
};
|
};
|
||||||
|
dansbandit = {
|
||||||
|
github = "dansbandit";
|
||||||
|
githubId = 4530687;
|
||||||
|
name = "dansbandit";
|
||||||
|
};
|
||||||
danth = {
|
danth = {
|
||||||
name = "Daniel Thwaites";
|
name = "Daniel Thwaites";
|
||||||
email = "danthwaites30@btinternet.com";
|
email = "danthwaites30@btinternet.com";
|
||||||
|
@ -168,7 +168,7 @@ let
|
|||||||
./manual.md \
|
./manual.md \
|
||||||
./manual-combined-pre.xml
|
./manual-combined-pre.xml
|
||||||
|
|
||||||
${pkgs.libxslt.bin}/bin/xsltproc \
|
xsltproc \
|
||||||
-o manual-combined.xml ${./../../lib/make-options-doc/postprocess-option-descriptions.xsl} \
|
-o manual-combined.xml ${./../../lib/make-options-doc/postprocess-option-descriptions.xsl} \
|
||||||
manual-combined-pre.xml
|
manual-combined-pre.xml
|
||||||
|
|
||||||
|
@ -87,6 +87,7 @@ let
|
|||||||
};
|
};
|
||||||
''
|
''
|
||||||
}
|
}
|
||||||
|
allow-query { any; };
|
||||||
${extraConfig}
|
${extraConfig}
|
||||||
};
|
};
|
||||||
'')
|
'')
|
||||||
|
@ -9,13 +9,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "PotreeConverter";
|
pname = "PotreeConverter";
|
||||||
version = "unstable-2022-08-04";
|
version = "unstable-2023-02-27";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "potree";
|
owner = "potree";
|
||||||
repo = "PotreeConverter";
|
repo = "PotreeConverter";
|
||||||
rev = "758bbac98a662de5e57d2280675e11cc76241688";
|
rev = "af4666fa1090983d8ce7c11dcf49ba19eda90995";
|
||||||
sha256 = "sha256-pDdV2/edYhhBWs153hSy1evI3cXD0Xq9nrEsw3JNcH4=";
|
sha256 = "sha256-QYNY+/v6mBEJFiv3i2QS+zqkgWJqeqXSqNoh+ChAiQA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
@ -29,8 +29,16 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
|
runHook prePatch
|
||||||
|
|
||||||
substituteInPlace ./CMakeLists.txt \
|
substituteInPlace ./CMakeLists.txt \
|
||||||
--replace "find_package(TBB REQUIRED)" ""
|
--replace "find_package(TBB REQUIRED)" ""
|
||||||
|
|
||||||
|
# prevent inheriting permissions from /nix/store when copying
|
||||||
|
substituteInPlace Converter/src/main.cpp --replace \
|
||||||
|
'fs::copy(templateDir, pagedir, fs::copy_options::overwrite_existing | fs::copy_options::recursive)' 'string cmd = "cp --no-preserve=mode -r " + templateDir + " " + pagedir; system(cmd.c_str());'
|
||||||
|
|
||||||
|
runHook postPatch
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -48,6 +56,12 @@ stdenv.mkDerivation rec {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
fixupPhase = ''
|
||||||
|
runHook preFixup
|
||||||
|
ln -s $src/resources $out/bin/resources
|
||||||
|
runHook postFixup
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Create multi res point cloud to use with potree";
|
description = "Create multi res point cloud to use with potree";
|
||||||
homepage = "https://github.com/potree/PotreeConverter";
|
homepage = "https://github.com/potree/PotreeConverter";
|
||||||
|
@ -20,13 +20,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "otpclient";
|
pname = "otpclient";
|
||||||
version = "3.1.5";
|
version = "3.1.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "paolostivanin";
|
owner = "paolostivanin";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-/1nycFh/slcfztfaZA6p9rZTWS4/vkb/Sovc94zlfCI=";
|
sha256 = "sha256-v7TvdS0IlfB4oKdaEh7Z3AFJDV1bOMiX5vVD7VhIMCE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gtk3 jansson libgcrypt libzip libpng libcotp zbar protobuf protobufc libsecret qrencode libuuid ];
|
buildInputs = [ gtk3 jansson libgcrypt libzip libpng libcotp zbar protobuf protobufc libsecret qrencode libuuid ];
|
||||||
|
117
pkgs/applications/misc/polar-bookshelf1/default.nix
Normal file
117
pkgs/applications/misc/polar-bookshelf1/default.nix
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, alsa-lib
|
||||||
|
, at-spi2-atk
|
||||||
|
, atk
|
||||||
|
, autoPatchelfHook
|
||||||
|
, cairo
|
||||||
|
, cups
|
||||||
|
, curl
|
||||||
|
, dbus
|
||||||
|
, dpkg
|
||||||
|
, expat
|
||||||
|
, fontconfig
|
||||||
|
, gdk-pixbuf
|
||||||
|
, glib
|
||||||
|
, glibc
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
, gtk3
|
||||||
|
, libX11
|
||||||
|
, libXScrnSaver
|
||||||
|
, libXcomposite
|
||||||
|
, libXcursor
|
||||||
|
, libXdamage
|
||||||
|
, libXext
|
||||||
|
, libXfixes
|
||||||
|
, libXi
|
||||||
|
, libXrandr
|
||||||
|
, libXrender
|
||||||
|
, libXtst
|
||||||
|
, libnghttp2
|
||||||
|
, libudev0-shim
|
||||||
|
, libxcb
|
||||||
|
, makeWrapper
|
||||||
|
, nspr
|
||||||
|
, nss
|
||||||
|
, openssl
|
||||||
|
, pango
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "polar-bookshelf1";
|
||||||
|
version = "1.100.14";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/burtonator/polar-bookshelf/releases/download/v${version}/polar-bookshelf-${version}-amd64.deb";
|
||||||
|
hash = "sha256-5xa+Nwu0p1x5DLn1GNI0HDt7GtBGoFQ/9qGTeq9uBgU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
alsa-lib
|
||||||
|
at-spi2-atk
|
||||||
|
atk
|
||||||
|
cairo
|
||||||
|
cups
|
||||||
|
dbus
|
||||||
|
expat
|
||||||
|
fontconfig
|
||||||
|
gdk-pixbuf
|
||||||
|
glib
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
gtk3
|
||||||
|
libX11
|
||||||
|
libXScrnSaver
|
||||||
|
libXcomposite
|
||||||
|
libXcursor
|
||||||
|
libXdamage
|
||||||
|
libXext
|
||||||
|
libXfixes
|
||||||
|
libXi
|
||||||
|
libXrandr
|
||||||
|
libXrender
|
||||||
|
libXtst
|
||||||
|
libxcb
|
||||||
|
nspr
|
||||||
|
nss
|
||||||
|
pango
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoPatchelfHook
|
||||||
|
dpkg
|
||||||
|
makeWrapper
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
runtimeLibs = lib.makeLibraryPath [ libudev0-shim glibc curl openssl libnghttp2 ];
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
dpkg-deb -x $src .
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/polar-bookshelf $out/bin $out/lib
|
||||||
|
mv opt/Polar\ Bookshelf/* $out/share/polar-bookshelf
|
||||||
|
mv $out/share/polar-bookshelf/*.so $out/lib
|
||||||
|
mv usr/share/* $out/share/
|
||||||
|
ln -s $out/share/polar-bookshelf/polar-bookshelf $out/bin/polar-bookshelf
|
||||||
|
'';
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${runtimeLibs}" )
|
||||||
|
# Correct desktop file `Exec`
|
||||||
|
substituteInPlace $out/share/applications/polar-bookshelf.desktop \
|
||||||
|
--replace "/opt/Polar Bookshelf/polar-bookshelf" "$out/bin/polar-bookshelf"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://getpolarized.io/";
|
||||||
|
description = "Personal knowledge repository for PDF and web content supporting incremental reading and document annotation";
|
||||||
|
license = lib.licenses.gpl3Only;
|
||||||
|
maintainers = [ lib.maintainers.dansbandit ];
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||||
|
};
|
||||||
|
}
|
@ -69,6 +69,24 @@ let
|
|||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
(self: super: {
|
||||||
|
cryptography = super.cryptography.overridePythonAttrs (old: {
|
||||||
|
meta = old.meta // {
|
||||||
|
knownVulnerabilities = old.meta.knownVulnerabilities or [ ]
|
||||||
|
++ lib.optionals (lib.versionOlder old.version "39.0.1") [
|
||||||
|
"CVE-2022-4304"
|
||||||
|
"CVE-2023-0215"
|
||||||
|
"CVE-2023-0216"
|
||||||
|
"CVE-2023-0217"
|
||||||
|
"CVE-2023-0401"
|
||||||
|
"CVE-2022-4203"
|
||||||
|
"CVE-2022-4450"
|
||||||
|
"CVE-2023-23931"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
).python;
|
).python;
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"aci": {
|
"aci": {
|
||||||
"hash": "sha256-rgPqf8PopvzXiIOjng7DNOv920MPI81EVMUu3DaS8o4=",
|
"hash": "sha256-OwQzr0Rt9fjbGfJPDezrh/j4hLwgq8ldRgTX3rL/ddY=",
|
||||||
"homepage": "https://registry.terraform.io/providers/CiscoDevNet/aci",
|
"homepage": "https://registry.terraform.io/providers/CiscoDevNet/aci",
|
||||||
"owner": "CiscoDevNet",
|
"owner": "CiscoDevNet",
|
||||||
"repo": "terraform-provider-aci",
|
"repo": "terraform-provider-aci",
|
||||||
"rev": "v2.6.1",
|
"rev": "v2.7.0",
|
||||||
"spdx": "MPL-2.0",
|
"spdx": "MPL-2.0",
|
||||||
"vendorHash": null
|
"vendorHash": null
|
||||||
},
|
},
|
||||||
@ -146,11 +146,11 @@
|
|||||||
"vendorHash": null
|
"vendorHash": null
|
||||||
},
|
},
|
||||||
"baiducloud": {
|
"baiducloud": {
|
||||||
"hash": "sha256-htNkDa60XHpH0aoJhMvsMiqUl8Ldqa/ZMl5dp7OKwGA=",
|
"hash": "sha256-J17jzgCTCG87Cieci/TrMpEUxA4Ynfm1+Cr4fRjDtNY=",
|
||||||
"homepage": "https://registry.terraform.io/providers/baidubce/baiducloud",
|
"homepage": "https://registry.terraform.io/providers/baidubce/baiducloud",
|
||||||
"owner": "baidubce",
|
"owner": "baidubce",
|
||||||
"repo": "terraform-provider-baiducloud",
|
"repo": "terraform-provider-baiducloud",
|
||||||
"rev": "v1.19.5",
|
"rev": "v1.19.6",
|
||||||
"spdx": "MPL-2.0",
|
"spdx": "MPL-2.0",
|
||||||
"vendorHash": null
|
"vendorHash": null
|
||||||
},
|
},
|
||||||
@ -164,13 +164,13 @@
|
|||||||
"vendorHash": null
|
"vendorHash": null
|
||||||
},
|
},
|
||||||
"bitbucket": {
|
"bitbucket": {
|
||||||
"hash": "sha256-FrKNPpwPCpL7GuPkjYCPqHit/VPJG5Fe0Ew4WMzp1AI=",
|
"hash": "sha256-2JTJF+zYuf9ZKaEMSOxxjODbmIBXnhpwE8LJUdRIkYY=",
|
||||||
"homepage": "https://registry.terraform.io/providers/DrFaust92/bitbucket",
|
"homepage": "https://registry.terraform.io/providers/DrFaust92/bitbucket",
|
||||||
"owner": "DrFaust92",
|
"owner": "DrFaust92",
|
||||||
"repo": "terraform-provider-bitbucket",
|
"repo": "terraform-provider-bitbucket",
|
||||||
"rev": "v2.30.2",
|
"rev": "v2.31.0",
|
||||||
"spdx": "MPL-2.0",
|
"spdx": "MPL-2.0",
|
||||||
"vendorHash": "sha256-rtPbHItqsgHoHs85QO6Uix2yvJkHE6B2XYMOdcJvoGc="
|
"vendorHash": "sha256-mnG2CZ/ko4p4CTs0YskJP41sQD9lmEz4dRQLiklim34="
|
||||||
},
|
},
|
||||||
"brightbox": {
|
"brightbox": {
|
||||||
"hash": "sha256-e4WvQKtf6zVEZ74c+lE3ZkbX24rPazp8MrJCNQDTz2c=",
|
"hash": "sha256-e4WvQKtf6zVEZ74c+lE3ZkbX24rPazp8MrJCNQDTz2c=",
|
||||||
@ -219,13 +219,13 @@
|
|||||||
"vendorHash": "sha256-w7Rsr3UgijW/3RMKzhMyWCvn5b1R1oqRs87/ZPO7jHs="
|
"vendorHash": "sha256-w7Rsr3UgijW/3RMKzhMyWCvn5b1R1oqRs87/ZPO7jHs="
|
||||||
},
|
},
|
||||||
"cloudflare": {
|
"cloudflare": {
|
||||||
"hash": "sha256-jf2NAhiavSWsKTRIJF8Ypm7tobzvTlESKEkDRre4ZVo=",
|
"hash": "sha256-dhSjFeTkbiG/Gx/DS1WzW2b31u3apfXX4Safh29e6Fw=",
|
||||||
"homepage": "https://registry.terraform.io/providers/cloudflare/cloudflare",
|
"homepage": "https://registry.terraform.io/providers/cloudflare/cloudflare",
|
||||||
"owner": "cloudflare",
|
"owner": "cloudflare",
|
||||||
"repo": "terraform-provider-cloudflare",
|
"repo": "terraform-provider-cloudflare",
|
||||||
"rev": "v4.2.0",
|
"rev": "v4.3.0",
|
||||||
"spdx": "MPL-2.0",
|
"spdx": "MPL-2.0",
|
||||||
"vendorHash": "sha256-9YmvaKPZVu+Fi0zlmJbKcU2iw2WUdzZJzgWPfkI1C24="
|
"vendorHash": "sha256-sgJ1HhhWQpvOGFVEC43pymBKyVcqdn8jLlW5fR21mFE="
|
||||||
},
|
},
|
||||||
"cloudfoundry": {
|
"cloudfoundry": {
|
||||||
"hash": "sha256-MKhsUGuDpKfYFf9Vk0uVrP/Z4hnQyO+2WiqWXO9EAC0=",
|
"hash": "sha256-MKhsUGuDpKfYFf9Vk0uVrP/Z4hnQyO+2WiqWXO9EAC0=",
|
||||||
@ -420,11 +420,11 @@
|
|||||||
"vendorHash": "sha256-uWTY8cFztXFrQQ7GW6/R+x9M6vHmsb934ldq+oeW5vk="
|
"vendorHash": "sha256-uWTY8cFztXFrQQ7GW6/R+x9M6vHmsb934ldq+oeW5vk="
|
||||||
},
|
},
|
||||||
"github": {
|
"github": {
|
||||||
"hash": "sha256-QsytXQ1bf9/OI4+XyZ+lBIuwTwAbdSOdquH1oyp6rOE=",
|
"hash": "sha256-PdaQAR/dSzFnJ+f+EEm1Y/DRjTDL2Qj7goSakjEaW80=",
|
||||||
"homepage": "https://registry.terraform.io/providers/integrations/github",
|
"homepage": "https://registry.terraform.io/providers/integrations/github",
|
||||||
"owner": "integrations",
|
"owner": "integrations",
|
||||||
"repo": "terraform-provider-github",
|
"repo": "terraform-provider-github",
|
||||||
"rev": "v5.19.0",
|
"rev": "v5.20.0",
|
||||||
"spdx": "MIT",
|
"spdx": "MIT",
|
||||||
"vendorHash": null
|
"vendorHash": null
|
||||||
},
|
},
|
||||||
@ -438,22 +438,22 @@
|
|||||||
"vendorHash": "sha256-s4FynUO6bT+8uZYkecbQCtFw1jFTAAYUkSzONI6Ba9g="
|
"vendorHash": "sha256-s4FynUO6bT+8uZYkecbQCtFw1jFTAAYUkSzONI6Ba9g="
|
||||||
},
|
},
|
||||||
"google": {
|
"google": {
|
||||||
"hash": "sha256-44Jbh9PiSNJNpshL0G4zz/5U73Y28C/eLGlJ1GTMITk=",
|
"hash": "sha256-XeY2AXdwzYUC5d5Bhx0vgBnmF80qDsjxUlJfUf+eKzw=",
|
||||||
"homepage": "https://registry.terraform.io/providers/hashicorp/google",
|
"homepage": "https://registry.terraform.io/providers/hashicorp/google",
|
||||||
"owner": "hashicorp",
|
"owner": "hashicorp",
|
||||||
"proxyVendor": true,
|
"proxyVendor": true,
|
||||||
"repo": "terraform-provider-google",
|
"repo": "terraform-provider-google",
|
||||||
"rev": "v4.59.0",
|
"rev": "v4.60.0",
|
||||||
"spdx": "MPL-2.0",
|
"spdx": "MPL-2.0",
|
||||||
"vendorHash": "sha256-ztoWOiqyOrusSo0peigEV9wy2f387gVGfcolkYoJvhw="
|
"vendorHash": "sha256-ztoWOiqyOrusSo0peigEV9wy2f387gVGfcolkYoJvhw="
|
||||||
},
|
},
|
||||||
"google-beta": {
|
"google-beta": {
|
||||||
"hash": "sha256-5ywjtlJCCw+Vzj22op7tm5xVj+QOqGIg4Paw8t8jFAg=",
|
"hash": "sha256-Fx6CEMjgrd0dnscSRono4QsyV/zZKzgrP9jyLqxtAFU=",
|
||||||
"homepage": "https://registry.terraform.io/providers/hashicorp/google-beta",
|
"homepage": "https://registry.terraform.io/providers/hashicorp/google-beta",
|
||||||
"owner": "hashicorp",
|
"owner": "hashicorp",
|
||||||
"proxyVendor": true,
|
"proxyVendor": true,
|
||||||
"repo": "terraform-provider-google-beta",
|
"repo": "terraform-provider-google-beta",
|
||||||
"rev": "v4.59.0",
|
"rev": "v4.60.0",
|
||||||
"spdx": "MPL-2.0",
|
"spdx": "MPL-2.0",
|
||||||
"vendorHash": "sha256-ztoWOiqyOrusSo0peigEV9wy2f387gVGfcolkYoJvhw="
|
"vendorHash": "sha256-ztoWOiqyOrusSo0peigEV9wy2f387gVGfcolkYoJvhw="
|
||||||
},
|
},
|
||||||
@ -973,13 +973,13 @@
|
|||||||
"vendorHash": null
|
"vendorHash": null
|
||||||
},
|
},
|
||||||
"scaleway": {
|
"scaleway": {
|
||||||
"hash": "sha256-cHleY4quCLquw4XH0TmvQ+TO0XP+ikclCvd0LASgC2w=",
|
"hash": "sha256-8bo+bJdzEZWQN6dATt9ln2BlEu11/9abWLl5V09mQX8=",
|
||||||
"homepage": "https://registry.terraform.io/providers/scaleway/scaleway",
|
"homepage": "https://registry.terraform.io/providers/scaleway/scaleway",
|
||||||
"owner": "scaleway",
|
"owner": "scaleway",
|
||||||
"repo": "terraform-provider-scaleway",
|
"repo": "terraform-provider-scaleway",
|
||||||
"rev": "v2.15.0",
|
"rev": "v2.16.0",
|
||||||
"spdx": "MPL-2.0",
|
"spdx": "MPL-2.0",
|
||||||
"vendorHash": "sha256-BIXxAGvF4+MjfU5X9/wNLUgzcVkiuz60EGXU/mNyqd8="
|
"vendorHash": "sha256-KUbE00fajvs4p8QxmuKV5IoRfCdWtfZTrOftcRAPSws="
|
||||||
},
|
},
|
||||||
"secret": {
|
"secret": {
|
||||||
"hash": "sha256-MmAnA/4SAPqLY/gYcJSTnEttQTsDd2kEdkQjQj6Bb+A=",
|
"hash": "sha256-MmAnA/4SAPqLY/gYcJSTnEttQTsDd2kEdkQjQj6Bb+A=",
|
||||||
@ -1090,13 +1090,13 @@
|
|||||||
"vendorHash": "sha256-iNBM4Y24vDGPKyb5cppSogk145F0/pAFmOzEeiWgfLI="
|
"vendorHash": "sha256-iNBM4Y24vDGPKyb5cppSogk145F0/pAFmOzEeiWgfLI="
|
||||||
},
|
},
|
||||||
"tailscale": {
|
"tailscale": {
|
||||||
"hash": "sha256-X3YV640d3pLyKm/v88oEhXfYnox+ksrEWKgiJbYl6gk=",
|
"hash": "sha256-r8MUoPWD06DcM4Oqqyoe4MPR6/NY7vvs/90z2zjQKTU=",
|
||||||
"homepage": "https://registry.terraform.io/providers/tailscale/tailscale",
|
"homepage": "https://registry.terraform.io/providers/tailscale/tailscale",
|
||||||
"owner": "tailscale",
|
"owner": "tailscale",
|
||||||
"repo": "terraform-provider-tailscale",
|
"repo": "terraform-provider-tailscale",
|
||||||
"rev": "v0.13.6",
|
"rev": "v0.13.7",
|
||||||
"spdx": "MIT",
|
"spdx": "MIT",
|
||||||
"vendorHash": "sha256-2wPmLpjhG6QgG+BUCO0oIzHjBOWIOYuptgdtSIm9TZw="
|
"vendorHash": "sha256-6UxBnQiogcizff5Rv4eadOeiG5JaXQphUWlfnqELvAI="
|
||||||
},
|
},
|
||||||
"talos": {
|
"talos": {
|
||||||
"hash": "sha256-/Ml+Vsh50U5CoVdnls69iTPoSPpgAtOpO2hWlcmbyKw=",
|
"hash": "sha256-/Ml+Vsh50U5CoVdnls69iTPoSPpgAtOpO2hWlcmbyKw=",
|
||||||
@ -1126,11 +1126,11 @@
|
|||||||
"vendorHash": "sha256-plYy3INLi/SeKu7R0lDLY1CvRDU7bmZsQKzFtMc2Wu4="
|
"vendorHash": "sha256-plYy3INLi/SeKu7R0lDLY1CvRDU7bmZsQKzFtMc2Wu4="
|
||||||
},
|
},
|
||||||
"thunder": {
|
"thunder": {
|
||||||
"hash": "sha256-GLyGm9Q+ajuQFIni/OCYvYhpj2fiVYHzkPwbofq/DEs=",
|
"hash": "sha256-GmFEgEKpkx+cvztHe2qDTVStMIGYYzmbZM8/QmSwbcA=",
|
||||||
"homepage": "https://registry.terraform.io/providers/a10networks/thunder",
|
"homepage": "https://registry.terraform.io/providers/a10networks/thunder",
|
||||||
"owner": "a10networks",
|
"owner": "a10networks",
|
||||||
"repo": "terraform-provider-thunder",
|
"repo": "terraform-provider-thunder",
|
||||||
"rev": "v1.1.0",
|
"rev": "v1.2.0",
|
||||||
"spdx": "BSD-2-Clause",
|
"spdx": "BSD-2-Clause",
|
||||||
"vendorHash": null
|
"vendorHash": null
|
||||||
},
|
},
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "gh";
|
pname = "gh";
|
||||||
version = "2.26.0";
|
version = "2.26.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cli";
|
owner = "cli";
|
||||||
repo = "cli";
|
repo = "cli";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-PsZSlLI6ZcHsKWIwETJKPdNWin4YySGNpgH2Yc7rdF8=";
|
hash = "sha256-ECYUpbzZXEJv0r9q66kLpUtp1gbgSeXdb3p4vHWIIk4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-+8/cA0UxyVu7nyLhHYBWmn8Vs0O/EYepqTAOVU4gwt4=";
|
vendorHash = "sha256-+8/cA0UxyVu7nyLhHYBWmn8Vs0O/EYepqTAOVU4gwt4=";
|
||||||
|
@ -18,13 +18,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "celluloid";
|
pname = "celluloid";
|
||||||
version = "0.24";
|
version = "0.25";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "celluloid-player";
|
owner = "celluloid-player";
|
||||||
repo = "celluloid";
|
repo = "celluloid";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-8Y/dCeoS29R1UHwmLOp0d+JNNC4JH5pLpiqfBZU+kLI=";
|
hash = "sha256-GCRpcC/olMUbMG2fadNcXTKF/Zl0+GY2+eSRLQhnWxI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -2,38 +2,48 @@
|
|||||||
, stdenv
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
, qt5
|
, wrapQtAppsHook
|
||||||
, ffmpeg-full
|
, qtbase
|
||||||
, aria2
|
, aria2
|
||||||
, yt-dlp
|
, ffmpeg
|
||||||
, python3
|
, python3
|
||||||
|
, yt-dlp
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "media-downloader";
|
pname = "media-downloader";
|
||||||
version = "2.9.0";
|
version = "3.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mhogomchungu";
|
owner = "mhogomchungu";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "${version}";
|
rev = "${version}";
|
||||||
sha256 = "sha256-3tVOyIwdGcSVnEJWQWh6HIsjY6uEzWkTs45qf81r/+0=";
|
hash = "sha256-/oKvjmLFchR2B/mcLIUVIHBK78u2OQGf2aiwVR/ZoQc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake qt5.wrapQtAppsHook ];
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
wrapQtAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
preFixup = ''
|
buildInputs = [
|
||||||
qtWrapperArgs+=(
|
qtbase
|
||||||
--prefix PATH : "${lib.makeBinPath [ ffmpeg-full aria2 yt-dlp python3 ]}"
|
];
|
||||||
)
|
|
||||||
'';
|
qtWrapperArgs = [
|
||||||
|
"--prefix PATH : ${lib.makeBinPath [
|
||||||
|
aria2
|
||||||
|
ffmpeg
|
||||||
|
python3
|
||||||
|
yt-dlp
|
||||||
|
]}"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A Qt/C++ GUI front end to youtube-dl";
|
description = "A Qt/C++ GUI front end to youtube-dl";
|
||||||
homepage = "https://github.com/mhogomchungu/media-downloader";
|
homepage = "https://github.com/mhogomchungu/media-downloader";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
broken = stdenv.isDarwin;
|
platforms = platforms.linux;
|
||||||
platforms = platforms.unix;
|
|
||||||
maintainers = with maintainers; [ zendo ];
|
maintainers = with maintainers; [ zendo ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
homepage = "https://containers.github.io/youki/";
|
homepage = "https://containers.github.io/youki/";
|
||||||
changelog = "https://github.com/containers/youki/releases/tag/v${version}";
|
changelog = "https://github.com/containers/youki/releases/tag/v${version}";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25,13 +25,13 @@ let
|
|||||||
in
|
in
|
||||||
stdenv.mkDerivation (self: {
|
stdenv.mkDerivation (self: {
|
||||||
pname = "labwc";
|
pname = "labwc";
|
||||||
version = "0.6.1";
|
version = "0.6.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "labwc";
|
owner = "labwc";
|
||||||
repo = "labwc";
|
repo = "labwc";
|
||||||
rev = self.version;
|
rev = self.version;
|
||||||
hash = "sha256-PfvtNbSAz1vt0+ko4zRPyRRN+lhQoA2kJ2xoJy5o4So=";
|
hash = "sha256-yZ1tXx7AA9pFc5C6c/J3B03/TfXw1PsAunNNiee3BGU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation rec {
|
|||||||
homepage = "https://atelier-anchor.com/typefaces/smiley-sans/";
|
homepage = "https://atelier-anchor.com/typefaces/smiley-sans/";
|
||||||
changelog = "https://github.com/atelier-anchor/smiley-sans/blob/main/CHANGELOG.md";
|
changelog = "https://github.com/atelier-anchor/smiley-sans/blob/main/CHANGELOG.md";
|
||||||
license = licenses.ofl;
|
license = licenses.ofl;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,6 @@ stdenvNoCC.mkDerivation rec {
|
|||||||
description = "A GeoLite2 data created by MaxMind";
|
description = "A GeoLite2 data created by MaxMind";
|
||||||
homepage = "https://github.com/Dreamacro/maxmind-geoip";
|
homepage = "https://github.com/Dreamacro/maxmind-geoip";
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -47,11 +47,11 @@ let
|
|||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "go";
|
pname = "go";
|
||||||
version = "1.19.7";
|
version = "1.19.8";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://go.dev/dl/go${version}.src.tar.gz";
|
url = "https://go.dev/dl/go${version}.src.tar.gz";
|
||||||
hash = "sha256-d1vfKFzqupQNqKL+IBIlAO/XoLZdvO6FJHhUqNdAJjM=";
|
hash = "sha256-HXpnkp3Mr+r4op5VmFvCt4ngSZyxoXEAA58ITjI42i8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://cista.rocks";
|
homepage = "https://cista.rocks";
|
||||||
description = "A simple, high-performance, zero-copy C++ serialization & reflection library";
|
description = "A simple, high-performance, zero-copy C++ serialization & reflection library";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A tiny boost library in C++11";
|
description = "A tiny boost library in C++11";
|
||||||
homepage = "https://github.com/idealvin/coost";
|
homepage = "https://github.com/idealvin/coost";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "faudio";
|
pname = "faudio";
|
||||||
version = "23.03";
|
version = "23.04";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "FNA-XNA";
|
owner = "FNA-XNA";
|
||||||
repo = "FAudio";
|
repo = "FAudio";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-sQbltmHmScSn5E1tE32uU16JQasjOnLW5N2m6+LC9CI=";
|
sha256 = "sha256-XajCJ8wmKzvLxPaA/SVETRiDM3gcd3NFxmdoz+WzkF8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [cmake];
|
nativeBuildInputs = [cmake];
|
||||||
|
@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://github.com/Dobiasd/FunctionalPlus";
|
homepage = "https://github.com/Dobiasd/FunctionalPlus";
|
||||||
license = licenses.boost;
|
license = licenses.boost;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://openquantumsafe.org";
|
homepage = "https://openquantumsafe.org";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "Public domain cross-platform semantic versioning in C99";
|
description = "Public domain cross-platform semantic versioning in C99";
|
||||||
homepage = "https://github.com/uael/sv";
|
homepage = "https://github.com/uael/sv";
|
||||||
license = licenses.unlicense;
|
license = licenses.unlicense;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://quantlib.org";
|
homepage = "https://quantlib.org";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "goodwe";
|
pname = "goodwe";
|
||||||
version = "0.2.30";
|
version = "0.2.31";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
owner = "marcelblijleven";
|
owner = "marcelblijleven";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-vtQK02LofAHYzqYIHcSdbXDEHHlvGt8iaNP2rx+2zwI=";
|
hash = "sha256-h5FXb8abSpyCDnaRox3J0XFLvl6V9IMcePtTZ3wbTPM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
33
pkgs/development/python-modules/meraki/default.nix
Normal file
33
pkgs/development/python-modules/meraki/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, aiohttp
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "meraki";
|
||||||
|
version = "1.30.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-s26xGwWSWB+qpOTUe8IYo53ywYOaaUWjDznFqpmRlak=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"meraki"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Provides all current Meraki dashboard API calls to interface with the Cisco Meraki cloud-managed platform";
|
||||||
|
homepage = "https://github.com/meraki/dashboard-api-python";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dylanmtaylor ];
|
||||||
|
};
|
||||||
|
}
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pychromecast";
|
pname = "pychromecast";
|
||||||
version = "13.0.6";
|
version = "13.0.7";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "PyChromecast";
|
pname = "PyChromecast";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-FJ2tKMvtIpa1B0wyZmLZywCTuDS0F8ue4Fgo6XsoLnM=";
|
hash = "sha256-DemOnlvkMmndQe+xYSarDVupQcpKyuAkMpcShRwMAyQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -6,12 +6,12 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "types-requests";
|
pname = "types-requests";
|
||||||
version = "2.28.11.16";
|
version = "2.28.11.17";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-nUACBW3368TsHyj9cB+6gsXCJUnER3EWyyZWqjCs5ts=";
|
hash = "sha256-DVgGUs6QP2Q/jDtJTdAdKTZ+pXzqDHrX9lzzFpCS7bA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "actionlint";
|
pname = "actionlint";
|
||||||
version = "1.6.23";
|
version = "1.6.24";
|
||||||
|
|
||||||
subPackages = [ "cmd/actionlint" ];
|
subPackages = [ "cmd/actionlint" ];
|
||||||
|
|
||||||
@ -18,10 +18,10 @@ buildGoModule rec {
|
|||||||
owner = "rhysd";
|
owner = "rhysd";
|
||||||
repo = "actionlint";
|
repo = "actionlint";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-0S7sTiTr22FlHHCT3Yw7UccrvgKvUVcPzR8QBUQiOh4=";
|
hash = "sha256-aUUHXI3D55bS6RYWNoia4xp80UYR2vz5GUWAdaqjnNk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-3H7reGAJ2RY7WAHOJW92Bl5WW3VSVP8Qg4DVlGZPU+E=";
|
vendorHash = "sha256-GtnTzFL6nuUmHAFChIjI6dxzsva/3Ob96DS2iCinlKE=";
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ronn installShellFiles ];
|
nativeBuildInputs = [ makeWrapper ronn installShellFiles ];
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "jacoco";
|
pname = "jacoco";
|
||||||
version = "0.8.8";
|
version = "0.8.9";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/${version}/jacoco-${version}.zip";
|
url = "https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/${version}/jacoco-${version}.zip";
|
||||||
stripRoot = false;
|
stripRoot = false;
|
||||||
sha256 = "sha256-NfXkMAFG1yMj1o06Hlhg9+B4RzL0I36fAGjZx3IC+NQ=";
|
sha256 = "sha256-gxe3HoOAj4u6k7hBDe6r9uPj4xSt1wFNPVzhM9YAEMI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "doc" ];
|
outputs = [ "out" "doc" ];
|
||||||
@ -35,7 +35,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A free code coverage library for Java";
|
description = "A free code coverage library for Java";
|
||||||
homepage = "https://jacoco.org/jacoco";
|
homepage = "https://www.jacoco.org/jacoco";
|
||||||
|
changelog = "https://www.jacoco.org/jacoco/trunk/doc/changes.html";
|
||||||
license = licenses.epl20;
|
license = licenses.epl20;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ figsoda ];
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
@ -8,16 +8,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "pscale";
|
pname = "pscale";
|
||||||
version = "0.133.0";
|
version = "0.134.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "planetscale";
|
owner = "planetscale";
|
||||||
repo = "cli";
|
repo = "cli";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-2yCtpxrw05Vh098wBH5FwdbvRtMmyyihzQUzQgH0vyo=";
|
sha256 = "sha256-t9gTAtmBCoESotNO6vcaDcYEVIwHoZfN55MrWNaN3R8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-JJwMucS03LdGCnlHqPych73KVcSZ3S9Y1nNr4V6CB+o=";
|
vendorHash = "sha256-z/YjBpLw1tW0NJvIeQImYPxz4uDT59fxQW3+AYMBsVk=";
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s" "-w"
|
"-s" "-w"
|
||||||
|
@ -3,16 +3,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "railway";
|
pname = "railway";
|
||||||
version = "3.0.18";
|
version = "3.0.19";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "railwayapp";
|
owner = "railwayapp";
|
||||||
repo = "cli";
|
repo = "cli";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-CL75WefdcBmGSoqReHM2eecsQPcciRfat7ULhc4TfV4=";
|
hash = "sha256-a7xrDd92/4ZRT768hOCcVzlevluGyQVTLdTfdLNQ8WI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-/uiz7dmuuByS99y7rXwyCtFGIR+DIenky4dusJCMFZg=";
|
cargoHash = "sha256-PuJzy0vw7yC4GctqTeAAB8Vhs8hJYXAptLr7rw69DZE=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
31
pkgs/development/tools/ruff/Cargo.lock
generated
31
pkgs/development/tools/ruff/Cargo.lock
generated
@ -774,7 +774,7 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "flake8-to-ruff"
|
name = "flake8-to-ruff"
|
||||||
version = "0.0.260"
|
version = "0.0.261"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap 4.1.8",
|
"clap 4.1.8",
|
||||||
@ -1543,8 +1543,9 @@ checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pep440_rs"
|
name = "pep440_rs"
|
||||||
version = "0.2.0"
|
version = "0.3.1"
|
||||||
source = "git+https://github.com/konstin/pep440-rs.git?rev=a8fef4ec47f4c25b070b39cdbe6a0b9847e49941#a8fef4ec47f4c25b070b39cdbe6a0b9847e49941"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d5daf676dd9ff1a39faf9c9da9c46f0dbb6211b21a1839a749f5510c24ceca3f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"regex",
|
"regex",
|
||||||
@ -1976,7 +1977,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ruff"
|
name = "ruff"
|
||||||
version = "0.0.260"
|
version = "0.0.261"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
@ -2009,6 +2010,7 @@ dependencies = [
|
|||||||
"ruff_diagnostics",
|
"ruff_diagnostics",
|
||||||
"ruff_macros",
|
"ruff_macros",
|
||||||
"ruff_python_ast",
|
"ruff_python_ast",
|
||||||
|
"ruff_python_semantic",
|
||||||
"ruff_python_stdlib",
|
"ruff_python_stdlib",
|
||||||
"ruff_rustpython",
|
"ruff_rustpython",
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
@ -2058,7 +2060,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ruff_cli"
|
name = "ruff_cli"
|
||||||
version = "0.0.260"
|
version = "0.0.261"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"annotate-snippets 0.9.1",
|
"annotate-snippets 0.9.1",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -2086,6 +2088,7 @@ dependencies = [
|
|||||||
"ruff",
|
"ruff",
|
||||||
"ruff_cache",
|
"ruff_cache",
|
||||||
"ruff_diagnostics",
|
"ruff_diagnostics",
|
||||||
|
"ruff_python_ast",
|
||||||
"ruff_python_stdlib",
|
"ruff_python_stdlib",
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"serde",
|
"serde",
|
||||||
@ -2168,16 +2171,15 @@ dependencies = [
|
|||||||
"is-macro",
|
"is-macro",
|
||||||
"itertools",
|
"itertools",
|
||||||
"log",
|
"log",
|
||||||
"nohash-hasher",
|
|
||||||
"num-bigint",
|
"num-bigint",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"regex",
|
"regex",
|
||||||
"ruff_python_stdlib",
|
|
||||||
"ruff_rustpython",
|
"ruff_rustpython",
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"rustpython-common",
|
"rustpython-common",
|
||||||
"rustpython-parser",
|
"rustpython-parser",
|
||||||
|
"serde",
|
||||||
"smallvec",
|
"smallvec",
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -2193,7 +2195,6 @@ dependencies = [
|
|||||||
"once_cell",
|
"once_cell",
|
||||||
"ruff_formatter",
|
"ruff_formatter",
|
||||||
"ruff_python_ast",
|
"ruff_python_ast",
|
||||||
"ruff_python_stdlib",
|
|
||||||
"ruff_rustpython",
|
"ruff_rustpython",
|
||||||
"ruff_testing_macros",
|
"ruff_testing_macros",
|
||||||
"ruff_text_size",
|
"ruff_text_size",
|
||||||
@ -2204,6 +2205,20 @@ dependencies = [
|
|||||||
"test-case",
|
"test-case",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ruff_python_semantic"
|
||||||
|
version = "0.0.0"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags",
|
||||||
|
"is-macro",
|
||||||
|
"nohash-hasher",
|
||||||
|
"ruff_python_ast",
|
||||||
|
"ruff_python_stdlib",
|
||||||
|
"rustc-hash",
|
||||||
|
"rustpython-parser",
|
||||||
|
"smallvec",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ruff_python_stdlib"
|
name = "ruff_python_stdlib"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
@ -8,13 +8,13 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "ruff";
|
pname = "ruff";
|
||||||
version = "0.0.260";
|
version = "0.0.261";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "charliermarsh";
|
owner = "charliermarsh";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-n/b1L0qMyGzcDwXTLgiPrd4YgFDtxYyUKrgykkdBQWU=";
|
hash = "sha256-YFhMrmZ1Zv4nIWWxq6A7PU0VYayugmJKbbkz+AdGJ+I=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# We have to use importCargoLock here because `cargo vendor` currently doesn't support workspace
|
# We have to use importCargoLock here because `cargo vendor` currently doesn't support workspace
|
||||||
@ -23,7 +23,6 @@ rustPlatform.buildRustPackage rec {
|
|||||||
lockFile = ./Cargo.lock;
|
lockFile = ./Cargo.lock;
|
||||||
outputHashes = {
|
outputHashes = {
|
||||||
"libcst-0.1.0" = "sha256-jG9jYJP4reACkFLrQBWOYH6nbKniNyFVItD0cTZ+nW0=";
|
"libcst-0.1.0" = "sha256-jG9jYJP4reACkFLrQBWOYH6nbKniNyFVItD0cTZ+nW0=";
|
||||||
"pep440_rs-0.2.0" = "sha256-wDJGz7SbHItYsg0+EgIoH48WFdV6MEg+HkeE07JE6AU=";
|
|
||||||
"rustpython-ast-0.2.0" = "sha256-0SHtycgDVOtiz7JZwd1v9lv2exxemcntm9lciih+pgc=";
|
"rustpython-ast-0.2.0" = "sha256-0SHtycgDVOtiz7JZwd1v9lv2exxemcntm9lciih+pgc=";
|
||||||
"unicode_names2-0.6.0" = "sha256-eWg9+ISm/vztB0KIdjhq5il2ZnwGJQCleCYfznCI3Wg=";
|
"unicode_names2-0.6.0" = "sha256-eWg9+ISm/vztB0KIdjhq5il2ZnwGJQCleCYfznCI3Wg=";
|
||||||
};
|
};
|
||||||
|
@ -6,13 +6,13 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-llvm-cov";
|
pname = "cargo-llvm-cov";
|
||||||
version = "0.5.11";
|
version = "0.5.13";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://crates.io/api/v1/crates/${pname}/${version}/download#${pname}-${version}.tar.gz";
|
url = "https://crates.io/api/v1/crates/${pname}/${version}/download#${pname}-${version}.tar.gz";
|
||||||
sha256 = "sha256-ygjCVpstU+gKcO85bzU9O3/2mFE885zkGwhAtlhjtVA=";
|
sha256 = "sha256-kgs5WvawX2YvahE7hrheA3CHhcON+yrxMlv/nDAwDIw=";
|
||||||
};
|
};
|
||||||
cargoSha256 = "sha256-WT609RDA1/UKRMniBpBF2UU36u4MeQH0PV0TzTQDWo0=";
|
cargoSha256 = "sha256-qaFUMP37qvvNndBhypxC8ZExJExUQFAca7I/mlxKezE=";
|
||||||
|
|
||||||
# skip tests which require llvm-tools-preview
|
# skip tests which require llvm-tools-preview
|
||||||
checkFlags = [
|
checkFlags = [
|
||||||
|
@ -26,6 +26,6 @@ buildGoModule rec {
|
|||||||
description = "An open-source, cloud-native, distributed, MySQL-Compatible database for elastic scale and real-time analytics";
|
description = "An open-source, cloud-native, distributed, MySQL-Compatible database for elastic scale and real-time analytics";
|
||||||
homepage = "https://pingcap.com";
|
homepage = "https://pingcap.com";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
|
||||||
, runCommand
|
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, openssl
|
, openssl
|
||||||
, zlib
|
, zlib
|
||||||
@ -26,7 +24,7 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage (
|
rustPlatform.buildRustPackage (
|
||||||
let
|
let
|
||||||
version = "0.77.1";
|
version = "0.78.0";
|
||||||
pname = "nushell";
|
pname = "nushell";
|
||||||
in {
|
in {
|
||||||
inherit version pname;
|
inherit version pname;
|
||||||
@ -35,10 +33,10 @@ rustPlatform.buildRustPackage (
|
|||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-MheKGfm72cxFtMIDj8VxEN4VFB1+tLoj+ujzL/7n8YI=";
|
hash = "sha256-fxx34xTFan5DcKo/sxFq6JxObGFTs4myNM0WmL5hnl8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-oUeoCAeVP2MBAhJfMptK+Z3n050cqpIIgnUroRVBYjg=";
|
cargoHash = "sha256-VqM6SAzYqwSSo3csjNCvcrZGwemtVHEGvh8gufouMeQ=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ]
|
nativeBuildInputs = [ pkg-config ]
|
||||||
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
|
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
|
||||||
|
@ -5,16 +5,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "scalr-cli";
|
pname = "scalr-cli";
|
||||||
version = "0.14.5";
|
version = "0.15.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Scalr";
|
owner = "Scalr";
|
||||||
repo = "scalr-cli";
|
repo = "scalr-cli";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-X/fZDM1OYw1a0la8os9TFUrl1h5BnO+C40h2XH32vmw=";
|
hash = "sha256-8KhFF/bD//NYRQ7v+ksGAE6bKVu+nE3o3R119XbHVDA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-EdDhq6LnxagutxjiOoYElhHVnSKhr/Ekt928gSooPYY=";
|
vendorHash = "sha256-xoxSQ9V9i7yxJzn8wAtIAtWlTn4q/UnNqMT93RyBHII=";
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s" "-w"
|
"-s" "-w"
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "bzip3";
|
pname = "bzip3";
|
||||||
version = "1.2.3";
|
version = "1.3.0";
|
||||||
|
|
||||||
outputs = [ "bin" "dev" "out" ];
|
outputs = [ "bin" "dev" "out" ];
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
owner = "kspalaiologos";
|
owner = "kspalaiologos";
|
||||||
repo = "bzip3";
|
repo = "bzip3";
|
||||||
rev = finalAttrs.version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-sBGY/tZz5qe1YF+MouwE1qpMKxeiHnXRL4gQx7EtuEc=";
|
hash = "sha256-g6+NdgbmbumNs6xt+D9F/yNclrUqOk6CJLCcjjSrzk4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "arti";
|
pname = "arti";
|
||||||
version = "1.1.2";
|
version = "1.1.3";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchFromGitLab {
|
||||||
domain = "gitlab.torproject.org";
|
domain = "gitlab.torproject.org";
|
||||||
@ -18,10 +18,10 @@ rustPlatform.buildRustPackage rec {
|
|||||||
owner = "core";
|
owner = "core";
|
||||||
repo = "arti";
|
repo = "arti";
|
||||||
rev = "arti-v${version}";
|
rev = "arti-v${version}";
|
||||||
sha256 = "sha256-mBs/euuIcVU9ETzfgirg2K/l+sV0OCyyfduvHR5vvek=";
|
sha256 = "sha256-hh1RJjCmKHI7fR5gxoyGj6nVX6/a2ZzMjp5li6hGbn0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-OgoYWHMgHVkjyRKr0w3hPNfFpN3VmrkVohiaQclIiA0=";
|
cargoHash = "sha256-vgrwjmJ/S5xqYzMZGMXjIC4szSRcSeBcTQoYIiuaUNI=";
|
||||||
|
|
||||||
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
|
||||||
|
|
||||||
|
@ -5,16 +5,16 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "trufflehog";
|
pname = "trufflehog";
|
||||||
version = "3.31.2";
|
version = "3.31.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "trufflesecurity";
|
owner = "trufflesecurity";
|
||||||
repo = "trufflehog";
|
repo = "trufflehog";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-IjnSQ7bIig19qxB2V28gcDOk7NJ0vvROHiinEVeeLTw=";
|
hash = "sha256-Ik2zAcjLvsJc1c7WntamruAT3oZqkFK7CabfRQ6BQzA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-eeCIszgEWFKBqG/hBrGikqvm0/1+gsgrRfwtUd22cgc=";
|
vendorHash = "sha256-PNEIuENQfSOTo4W4frx/e56OwphGZGSP6WBLLtQeS4M=";
|
||||||
|
|
||||||
# Test cases run git clone and require network access
|
# Test cases run git clone and require network access
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "zfxtop";
|
pname = "zfxtop";
|
||||||
version = "0.3.0";
|
version = "0.3.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ssleert";
|
owner = "ssleert";
|
||||||
repo = "zfxtop";
|
repo = "zfxtop";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-auq5NvpI7De9/QBUDPFtXwsAeX/D2RmlVaKe/lrs1MQ=";
|
hash = "sha256-7qeTC9CIx4K2fLRM/pYrSU1NHv9TFMsl7TT0W5Uph60=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-VKBRgDu9xVbZrC5fadkdFjd1OETNwaxgraRnA34ETzE=";
|
vendorHash = "sha256-VKBRgDu9xVbZrC5fadkdFjd1OETNwaxgraRnA34ETzE=";
|
||||||
|
@ -31,6 +31,6 @@ rustPlatform.buildRustPackage rec {
|
|||||||
homepage = "https://huacnlee.github.io/autocorrect";
|
homepage = "https://huacnlee.github.io/autocorrect";
|
||||||
changelog = "https://github.com/huacnlee/autocorrect/releases/tag/v${version}";
|
changelog = "https://github.com/huacnlee/autocorrect/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,17 +2,17 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "lux";
|
pname = "lux";
|
||||||
version = "0.17.0";
|
version = "0.17.2";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "iawia002";
|
owner = "iawia002";
|
||||||
repo = "lux";
|
repo = "lux";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-n6oWItz0tnhpyPBGsf4+fYGnJyeYyhI2owkLrJWu7uw=";
|
sha256 = "sha256-bEfDZkbASGQcx6IT5m1oy42maEJp8ElMC4uvjPwJbDU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
vendorHash = "sha256-4pn6JKE+VieadhDLkVhbJc6XSm95cNwoNBWYGEZl8iI=";
|
vendorHash = "sha256-7WgTRnt1RsoMattIiYH2GFlQF12zoWTRkm3vts07/ho=";
|
||||||
|
|
||||||
ldflags = [ "-s" "-w" ];
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
@ -28,6 +28,6 @@ buildGoModule rec {
|
|||||||
homepage = "https://github.com/iawia002/lux";
|
homepage = "https://github.com/iawia002/lux";
|
||||||
changelog = "https://github.com/iawia002/lux/releases/tag/v${version}";
|
changelog = "https://github.com/iawia002/lux/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ candyc1oud ];
|
maintainers = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -31831,7 +31831,7 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
};
|
};
|
||||||
|
|
||||||
media-downloader = callPackage ../applications/video/media-downloader { };
|
media-downloader = libsForQt5.callPackage ../applications/video/media-downloader { };
|
||||||
|
|
||||||
mediaelch = mediaelch-qt5;
|
mediaelch = mediaelch-qt5;
|
||||||
mediaelch-qt5 = libsForQt5.callPackage ../applications/misc/mediaelch { };
|
mediaelch-qt5 = libsForQt5.callPackage ../applications/misc/mediaelch { };
|
||||||
@ -32984,6 +32984,8 @@ with pkgs;
|
|||||||
|
|
||||||
polar-bookshelf = callPackage ../applications/misc/polar-bookshelf { };
|
polar-bookshelf = callPackage ../applications/misc/polar-bookshelf { };
|
||||||
|
|
||||||
|
polar-bookshelf1 = callPackage ../applications/misc/polar-bookshelf1 { };
|
||||||
|
|
||||||
poezio = python3Packages.poezio;
|
poezio = python3Packages.poezio;
|
||||||
|
|
||||||
pommed_light = callPackage ../os-specific/linux/pommed-light { };
|
pommed_light = callPackage ../os-specific/linux/pommed-light { };
|
||||||
|
@ -5955,6 +5955,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
memory_profiler = callPackage ../development/python-modules/memory_profiler { };
|
memory_profiler = callPackage ../development/python-modules/memory_profiler { };
|
||||||
|
|
||||||
|
meraki = callPackage ../development/python-modules/meraki { };
|
||||||
|
|
||||||
mercantile = callPackage ../development/python-modules/mercantile { };
|
mercantile = callPackage ../development/python-modules/mercantile { };
|
||||||
|
|
||||||
mercurial = toPythonModule (pkgs.mercurial.override {
|
mercurial = toPythonModule (pkgs.mercurial.override {
|
||||||
|
Loading…
Reference in New Issue
Block a user