593e11fd94
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
42 lines
1.5 KiB
Nix
42 lines
1.5 KiB
Nix
{ fetchurl, stdenv, tokyocabinet, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tokyotyrant-1.1.41";
|
|
|
|
src = fetchurl {
|
|
url = "https://fallabs.com/tokyotyrant/${name}.tar.gz";
|
|
sha256 = "13xqcinhydqmh7231qlir6pymacjwcf98drybkhd9597kzxp1bs2";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ tokyocabinet ];
|
|
|
|
doCheck = false; # FIXME
|
|
|
|
meta = {
|
|
description = "Network interface of the Tokyo Cabinet DBM";
|
|
|
|
longDescription =
|
|
'' Tokyo Tyrant is a package of network interface to the DBM called
|
|
Tokyo Cabinet. Though the DBM has high performance, you might
|
|
bother in case that multiple processes share the same database, or
|
|
remote processes access the database. Thus, Tokyo Tyrant is
|
|
provided for concurrent and remote connections to Tokyo Cabinet. It
|
|
is composed of the server process managing a database and its access
|
|
library for client applications.
|
|
|
|
Tokyo Tyrant is written in the C language, and provided as API of C,
|
|
Perl, and Ruby. Tokyo Tyrant is available on platforms which have
|
|
API conforming to C99 and POSIX. Tokyo Tyrant is a free software
|
|
licensed under the GNU Lesser General Public License.
|
|
'';
|
|
|
|
homepage = https://fallabs.com/tokyotyrant/;
|
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
|
maintainers = [ ];
|
|
};
|
|
}
|