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 ```
33 lines
889 B
Nix
33 lines
889 B
Nix
{ stdenv, fetchurl, alsaLib, libX11, makeWrapper, tcl, tk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vkeybd";
|
|
version = "0.1.18d";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.suse.com/pub/people/tiwai/vkeybd/${pname}-${version}.tar.bz2";
|
|
sha256 = "0107b5j1gf7dwp7qb4w2snj4bqiyps53d66qzl2rwj4jfpakws5a";
|
|
};
|
|
|
|
buildInputs = [ alsaLib libX11 makeWrapper tcl tk ];
|
|
|
|
configurePhase = ''
|
|
mkdir -p $out/bin
|
|
sed -e "s@/usr/local@$out@" -i Makefile
|
|
'';
|
|
|
|
makeFlags = [ "TKLIB=-l${tk.libPrefix}" "TCLLIB=-l${tcl.libPrefix}" ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/vkeybd --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Virtual MIDI keyboard";
|
|
homepage = https://www.alsa-project.org/~tiwai/alsa.html;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|