Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkgs/by-name/pa/pastel/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@

rustPlatform.buildRustPackage rec {
pname = "pastel";
version = "0.10.0";
version = "0.11.0";

src = fetchFromGitHub {
owner = "sharkdp";
repo = "pastel";
rev = "v${version}";
sha256 = "sha256-kr2aLRd143ksVx42ZDO/NILydObinn3AwPCniXVVmY0=";
sha256 = "sha256-ISzZZNh9X91vBbVOpYXnYpO3ztGgIhMJTZmoY2T0FRw=";
};

cargoHash = "sha256-u+1KDcC2KGqvmOk6k7hOHE16TMvDg92eMOdNMQQszug=";
cargoHash = "sha256-r0QiooMrTqFaXq2Y9wVW45zjtHT7qQ6XTWPRhlLpVQ8=";

meta = {
description = "Command-line tool to generate, analyze, convert and manipulate colors";
Expand Down
9 changes: 6 additions & 3 deletions pkgs/development/libraries/pipewire/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ in

stdenv.mkDerivation (finalAttrs: {
pname = "pipewire";
version = "1.4.9";
version = "1.5.84";

outputs = [
"out"
Expand All @@ -93,7 +93,7 @@ stdenv.mkDerivation (finalAttrs: {
owner = "pipewire";
repo = "pipewire";
rev = finalAttrs.version;
sha256 = "sha256-380KY17l6scVchZAoSHswTvceYl427e79eU11JQallc=";
sha256 = "sha256-+ZIBXFwzETHNflboEBdPlHrg4lLDg0rnrcIpos4Z4a0=";
};

patches = [
Expand Down Expand Up @@ -204,7 +204,7 @@ stdenv.mkDerivation (finalAttrs: {
(lib.mesonEnable "avb" stdenv.hostPlatform.isLinux)
(lib.mesonEnable "v4l2" stdenv.hostPlatform.isLinux)
(lib.mesonEnable "pipewire-v4l2" stdenv.hostPlatform.isLinux)
(lib.mesonEnable "systemd" enableSystemd)
(lib.mesonEnable "libsystemd" enableSystemd)
(lib.mesonEnable "systemd-system-service" enableSystemd)
(lib.mesonEnable "udev" (!enableSystemd && stdenv.hostPlatform.isLinux))
(lib.mesonEnable "ffmpeg" true)
Expand All @@ -219,6 +219,9 @@ stdenv.mkDerivation (finalAttrs: {
(lib.mesonEnable "bluez5-codec-lc3plus" false)
(lib.mesonEnable "bluez5-codec-lc3" bluezSupport)
(lib.mesonEnable "bluez5-codec-ldac" (bluezSupport && ldacbtSupport))
(lib.mesonEnable "bluez5-codec-ldac-dec" false) # Wasn't included previously and was causing mason errors
(lib.mesonEnable "bluez5-plc-spandsp" false) # Same as above
(lib.mesonEnable "onnxruntime" false) # Same as above
(lib.mesonEnable "opus" true)
(lib.mesonOption "sysconfdir" "/etc")
(lib.mesonEnable "raop" raopSupport)
Expand Down
Loading