lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

bencodetools: rename from libbencodetools, enable tests

authored by

OPNA2608 and committed by
Rick van Schijndel
d6dbe27e d17d1348

+11 -6
+3 -3
pkgs/applications/audio/uade123/default.nix
··· 6 6 , which 7 7 , makeWrapper 8 8 , libao 9 - , libbencodetools 9 + , bencodetools 10 10 , sox 11 11 , lame 12 12 , flac ··· 42 42 43 43 buildInputs = [ 44 44 libao 45 - libbencodetools 45 + bencodetools 46 46 sox 47 47 lame 48 48 flac ··· 54 54 ]; 55 55 56 56 configureFlags = [ 57 - "--bencode-tools-prefix=${libbencodetools}" 57 + "--bencode-tools-prefix=${bencodetools}" 58 58 ]; 59 59 60 60 enableParallelBuilding = true;
+5 -1
pkgs/development/libraries/libbencodetools/default.nix pkgs/development/libraries/bencodetools/default.nix
··· 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 - pname = "libbencodetools"; 8 + pname = "bencodetools"; 9 9 version = "unstable-2022-05-11"; 10 10 11 11 src = fetchFromGitLab { ··· 26 26 nativeBuildInputs = [ 27 27 python3 28 28 ]; 29 + 30 + # installCheck instead of check due to -install_name'd library on Darwin 31 + doInstallCheck = stdenv.buildPlatform == stdenv.hostPlatform; 32 + installCheckTarget = "check"; 29 33 30 34 meta = with lib; { 31 35 description = "Collection of tools for manipulating bencoded data";
+1
pkgs/top-level/aliases.nix
··· 700 700 letsencrypt = throw "'letsencrypt' has been renamed to/replaced by 'certbot'"; # Converted to throw 2022-02-22 701 701 libGL_driver = throw "'libGL_driver' has been renamed to/replaced by 'mesa.drivers'"; # Converted to throw 2022-02-22 702 702 libaudit = throw "'libaudit' has been renamed to/replaced by 'audit'"; # Converted to throw 2022-02-22 703 + libbencodetools = bencodetools; # Added 2022-07-30 703 704 libbluedevil = throw "'libbluedevil' (Qt4) is unmaintained and unused since 'kde4.bluedevil's removal in 2017"; # Added 2022-06-14 704 705 libcanberra_gtk2 = throw "'libcanberra_gtk2' has been renamed to/replaced by 'libcanberra-gtk2'"; # Converted to throw 2022-02-22 705 706 libcanberra_gtk3 = throw "'libcanberra_gtk3' has been renamed to/replaced by 'libcanberra-gtk3'"; # Converted to throw 2022-02-22
+2 -2
pkgs/top-level/all-packages.nix
··· 17348 17348 17349 17349 belr = callPackage ../development/libraries/belr { }; 17350 17350 17351 + bencodetools = callPackage ../development/libraries/bencodetools { }; 17352 + 17351 17353 beignet = callPackage ../development/libraries/beignet { 17352 17354 inherit (llvmPackages_6) libllvm libclang; 17353 17355 }; ··· 18943 18945 libbass_fx = (callPackage ../development/libraries/audio/libbass { }).bass_fx; 18944 18946 18945 18947 libbde = callPackage ../development/libraries/libbde { }; 18946 - 18947 - libbencodetools = callPackage ../development/libraries/libbencodetools { }; 18948 18948 18949 18949 libbdplus = callPackage ../development/libraries/libbdplus { }; 18950 18950