Merge pull request #158358 from c0bw3b/fix/homepages
A batch of homepage (and source) updates
This commit is contained in:
commit
33489310eb
@ -57,7 +57,7 @@ in mkDerivation rec {
|
||||
there are basic functionalities to align the signals in time and
|
||||
amplitude, this software does not aim to be an audio editor.
|
||||
'';
|
||||
homepage = "http://gillesdegottex.github.io/dfasma/";
|
||||
homepage = "https://gillesdegottex.gitlab.io/dfasma-website/";
|
||||
license = [ licenses.gpl3Plus reaperFork.meta.license ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -13,9 +13,9 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ lv2 python3 ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://drobilla.net/software/fomp/";
|
||||
homepage = "https://drobilla.net/software/fomp.html";
|
||||
description = "An LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www2.ika.ruhr-uni-bochum.de/HybridReverb2";
|
||||
homepage = "https://github.com/jpcima/HybridReverb2";
|
||||
description = "Reverb effect using hybrid impulse convolution";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
|
@ -49,9 +49,9 @@ in mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pixel-oriented paint program, modelled on Deluxe Paint";
|
||||
homepage = "http://evilpixie.scumways.com/";
|
||||
homepage = "https://github.com/bcampbell/evilpixie"; # http://evilpixie.scumways.com/ is gone
|
||||
downloadPage = "https://github.com/bcampbell/evilpixie/releases";
|
||||
license = licenses.gpl3;
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ fgaz ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Create labels and business cards";
|
||||
homepage = "https://glabels.org/";
|
||||
homepage = "https://github.com/jimevins/glabels";
|
||||
license = with licenses; [ gpl3Plus lgpl3Plus ];
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.nico202 ];
|
||||
|
@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
|
||||
version = "3.4.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://homepages.ihug.co.nz/~trmusson/stuff/${pname}-${version}.tar.gz";
|
||||
url = "https://trmusson.dreamhosters.com/stuff/${pname}-${version}.tar.gz";
|
||||
sha256 = "db4e1655fc58f31e5770a17dfca4e6c89028ad8b2c8e043febc87a0beedeef05";
|
||||
};
|
||||
|
||||
@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "A GTK enabled dropin replacement for xmessage";
|
||||
homepage = "http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage";
|
||||
license = lib.licenses.gpl3;
|
||||
homepage = "https://trmusson.dreamhosters.com/programs.html#gxmessage";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [jfb];
|
||||
platforms = with lib.platforms; linux;
|
||||
};
|
||||
|
@ -1,12 +1,14 @@
|
||||
{ lib, stdenv, fetchurl, SDL, SDL_ttf, SDL_image, libSM, libICE, libGLU, libGL, libpng, lua5, autoconf, automake }:
|
||||
{ lib, stdenv, fetchFromGitHub, SDL, SDL_ttf, SDL_image, libSM, libICE, libGLU, libGL, libpng, lua5, autoconf, automake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gravit";
|
||||
version = "0.5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://gravit.slowchop.com/media/downloads/gravit-${version}.tgz";
|
||||
sha256 = "14vf7zj2bgrl96wsl3f1knsggc8h9624354ajzd72l46y09x5ky7";
|
||||
src = fetchFromGitHub {
|
||||
owner = "gak";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-JuqnLLD5+Ec8kQI0SK98V1O6TTbGM6+yKn5KCHe85eM=";
|
||||
};
|
||||
|
||||
buildInputs = [ libGLU libGL SDL SDL_ttf SDL_image lua5 libpng libSM libICE ];
|
||||
@ -23,9 +25,9 @@ stdenv.mkDerivation rec {
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
homepage = "https://gravit.slowchop.com";
|
||||
homepage = "https://github.com/gak/gravit";
|
||||
description = "Beautiful OpenGL-based gravity simulator";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Plus;
|
||||
|
||||
longDescription = ''
|
||||
Gravit is a gravity simulator which runs under Linux, Windows and
|
||||
|
@ -37,8 +37,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Graph based aligner";
|
||||
license = licenses.gpl3;
|
||||
homepage = "https://ccb.jhu.edu/software/hisat2/index.shtml";
|
||||
license = licenses.gpl3Plus;
|
||||
homepage = "https://daehwankimlab.github.io/hisat2/";
|
||||
maintainers = with maintainers; [ jbedo ];
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
};
|
||||
|
@ -89,7 +89,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Schematic editor and PCB layout tool from CadSoft";
|
||||
homepage = "http://www.cadsoftusa.com/";
|
||||
homepage = "https://www.autodesk.com/products/eagle/overview";
|
||||
license = licenses.unfree;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
|
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.eterm.org";
|
||||
homepage = "https://github.com/mej/Eterm"; # http://www.eterm.org is gone
|
||||
description = "Terminal emulator";
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
|
@ -8,7 +8,7 @@ pypy2Packages.buildPythonApplication rec {
|
||||
version = "2.5.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://cvs2svn.tigris.org/files/documents/1462/49543/${pname}-${version}.tar.gz";
|
||||
url = "https://github.com/mhagger/cvs2svn/releases/download/${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "1ska0z15sjhyfi860rjazz9ya1gxbf5c0h8dfqwz88h7fccd22b4";
|
||||
};
|
||||
|
||||
@ -29,7 +29,7 @@ pypy2Packages.buildPythonApplication rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool to convert CVS repositories to Subversion repositories";
|
||||
homepage = "http://cvs2svn.tigris.org/";
|
||||
homepage = "https://github.com/mhagger/cvs2svn";
|
||||
maintainers = [ maintainers.makefu ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.asl20;
|
||||
|
@ -34,7 +34,7 @@ buildPythonPackage rec {
|
||||
pythonImportsCheck = [ "dispatchsrht" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://dispatch.sr.ht/~sircmpwn/dispatch.sr.ht";
|
||||
homepage = "https://git.sr.ht/~sircmpwn/dispatch.sr.ht";
|
||||
description = "Task dispatcher and service integration tool for the sr.ht network";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ eadwu ];
|
||||
|
@ -99,7 +99,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.ice-wm.org/";
|
||||
homepage = "https://ice-wm.org/";
|
||||
description = "A simple, lightweight X window manager";
|
||||
longDescription = ''
|
||||
IceWM is a window manager for the X Window System. The goal of IceWM is
|
||||
|
@ -16,7 +16,7 @@ in fetchzip rec {
|
||||
sha256 = "1rzz7yhqq3lljyqxbg46jfzfd09qgpgx865lijr4sgc94riy1ypn";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://canopus.iacp.dvo.ru/~panov/cm-unicode/";
|
||||
homepage = "https://cm-unicode.sourceforge.io/";
|
||||
description = "Computer Modern Unicode fonts";
|
||||
maintainers = with maintainers; [ raskin rycee ];
|
||||
license = licenses.ofl;
|
||||
|
@ -16,7 +16,7 @@ in fetchzip rec {
|
||||
sha256 = "0mg65f0ydyfmb43jqr1f34njpd10w8npw15cbb7z0nxmy4nkl842";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://aldusleaf.org/crimson.html";
|
||||
homepage = "https://github.com/skosch/Crimson";
|
||||
description = "A font family inspired by beautiful oldstyle typefaces";
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
|
@ -12,7 +12,7 @@ let
|
||||
This package includes DejaVu Sans, DejaVu Serif, DejaVu Sans Mono, and
|
||||
the TeX Gyre DejaVu Math font.
|
||||
'';
|
||||
homepage = "http://dejavu-fonts.org/wiki/Main_Page";
|
||||
homepage = "https://dejavu-fonts.github.io/";
|
||||
|
||||
# Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
|
||||
# Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
|
||||
|
@ -23,7 +23,7 @@ fetchzip rec {
|
||||
|
||||
Designed by Pablo Impallari and Andres Torresi.
|
||||
'';
|
||||
homepage = "http://www.impallari.com/projects/overview/encode";
|
||||
homepage = "https://github.com/impallari/Encode-Sans";
|
||||
license = licenses.ofl;
|
||||
maintainers = with maintainers; [ cmfwyp ];
|
||||
platforms = platforms.all;
|
||||
|
@ -3,7 +3,7 @@
|
||||
fetchzip {
|
||||
name = "ipafont-003.03";
|
||||
|
||||
url = "http://ipafont.ipa.go.jp/old/ipafont/IPAfont00303.php";
|
||||
url = "https://moji.or.jp/wp-content/ipafont/IPAfont/IPAfont00303.zip";
|
||||
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts
|
||||
@ -19,7 +19,7 @@ fetchzip {
|
||||
Promotion Agency of Japan. It provides both Mincho and Gothic fonts,
|
||||
suitable for both display and printing.
|
||||
'';
|
||||
homepage = "http://ipafont.ipa.go.jp/ipafont/";
|
||||
homepage = "https://moji.or.jp/ipafont/";
|
||||
license = lib.licenses.ipa;
|
||||
maintainers = [ lib.maintainers.auntie ];
|
||||
};
|
||||
|
@ -63,8 +63,9 @@ let
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://wiki.docbook.org/topic/DocBookXslStylesheets";
|
||||
homepage = "https://github.com/docbook/wiki/wiki/DocBookXslStylesheets";
|
||||
description = "XSL stylesheets for transforming DocBook documents into HTML and various other formats";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.eelco ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, fetchFromGitHub
|
||||
, guile
|
||||
, pkg-config
|
||||
, texinfo
|
||||
@ -10,9 +10,11 @@ stdenv.mkDerivation rec {
|
||||
pname = "guile-xcb";
|
||||
version = "1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.markwitmer.com/dist/${pname}-${version}.tar.gz";
|
||||
hash = "sha256-iYR6AYSTgUsURAEJTWcdHlc0f8LzEftAIsfonBteuxE=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "mwitmer";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-8iaYil2wiqnu9p7Gj93GE5akta1A0zqyApRwHct5RSs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@ -29,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.markwitmer.com/guile-xcb/guile-xcb.html";
|
||||
homepage = "https://github.com/mwitmer/guile-xcb";
|
||||
description = "XCB bindings for Guile";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ vyp ];
|
||||
|
@ -61,8 +61,8 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "OS abstraction functions used by aqbanking and related tools";
|
||||
homepage = "http://www2.aquamaniac.de/sites/download/packages.php?package=01&showall=1";
|
||||
license = licenses.lgpl21;
|
||||
homepage = "https://www.aquamaniac.de/rdm/projects/gwenhywfar";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Ultra-low delay audio codec";
|
||||
homepage = "http://www.celt-codec.org/";
|
||||
homepage = "https://gitlab.xiph.org/xiph/celt"; # http://www.celt-codec.org/ is gone
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ codyopel raskin ];
|
||||
platforms = platforms.unix;
|
||||
|
@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
|
||||
pname = "easyloggingpp";
|
||||
version = "9.97.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "muflihun";
|
||||
owner = "amrayn";
|
||||
repo = "easyloggingpp";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-sFWmZMnucMuvpwDzuowni21KiD3bx0lH1Ts+yhusOYs=";
|
||||
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
meta = {
|
||||
description = "C++ logging library";
|
||||
homepage = "https://muflihun.github.io/easyloggingpp/";
|
||||
homepage = "https://github.com/amrayn/easyloggingpp";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [acowley];
|
||||
platforms = lib.platforms.all;
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A language independent, scalable, open extension to CG";
|
||||
homepage = "http://www.fastcgi.com/";
|
||||
homepage = "https://fastcgi-archives.github.io/"; # Formerly http://www.fastcgi.com/
|
||||
license = "FastCGI see LICENSE.TERMS";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = lib.optionals enablePython [ python3 ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://people.cs.ubc.ca/~mariusm/flann/";
|
||||
homepage = "https://github.com/flann-lib/flann";
|
||||
license = lib.licenses.bsd3;
|
||||
description = "Fast approximate nearest neighbor searches in high dimensional spaces";
|
||||
maintainers = with lib.maintainers; [viric];
|
||||
|
@ -12,9 +12,12 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ libiconv ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.nic.ad.jp/ja/idn/idnkit";
|
||||
homepage = "https://jprs.co.jp/idn/index-e.html";
|
||||
description = "Provides functionalities about i18n domain name processing";
|
||||
license = "idnkit-2 license";
|
||||
license = {
|
||||
fullName = "Open Source Code License version 1.1";
|
||||
url = "https://jprs.co.jp/idn/idnkit2-OSCL.txt";
|
||||
};
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -59,8 +59,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "The ERESI Reverse Engineering Software Interface";
|
||||
license = lib.licenses.gpl2;
|
||||
homepage = "http://www.eresi-project.org/";
|
||||
license = lib.licenses.gpl2Only;
|
||||
homepage = "https://github.com/thorkill/eresi"; # Formerly http://www.eresi-project.org/
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "3D dungeon crawling adventure";
|
||||
|
||||
homepage = "http://www.freedink.org/";
|
||||
homepage = "http://egoboo.sourceforge.net/";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
|
||||
# I take it out of hydra as it does not work as well as I'd like
|
||||
|
@ -51,7 +51,7 @@ in stdenv.mkDerivation rec {
|
||||
with close compatibility, under multiple platforms.
|
||||
'';
|
||||
|
||||
homepage = "http://www.freedink.org/";
|
||||
homepage = "https://www.gnu.org/software/freedink/"; # Formerly http://www.freedink.org
|
||||
license = lib.licenses.gpl3Plus;
|
||||
|
||||
maintainers = [ lib.maintainers.bjg ];
|
||||
|
@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
|
||||
maintainers = with maintainers; [matthewbauer];
|
||||
platforms = platforms.darwin;
|
||||
license = licenses.publicDomain;
|
||||
homepage = "http://duti.org/";
|
||||
homepage = "https://github.com/moretension/duti/";
|
||||
};
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ rustPlatform.buildRustPackage rec {
|
||||
that makes no assumptions about what you want to launch.
|
||||
Comes with agreety, a simple, text-based greeter.
|
||||
'';
|
||||
homepage = "https://kl.wtf/projects/greetd/";
|
||||
homepage = "https://sr.ht/~kennylevinsen/greetd/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ luc65r ];
|
||||
platforms = platforms.linux;
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://nginx.localdomain.pl/wiki/FcgiWrap";
|
||||
homepage = "https://github.com/gnosek/fcgiwrap";
|
||||
description = "Simple server for running CGI applications over FastCGI";
|
||||
maintainers = with maintainers; [ ];
|
||||
platforms = with platforms; linux;
|
||||
|
@ -100,9 +100,9 @@ in stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://nuclearelephant.com/";
|
||||
homepage = "http://dspam.sourceforge.net/";
|
||||
description = "Community Driven Antispam Filter";
|
||||
license = licenses.agpl3;
|
||||
license = licenses.agpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pseudorandom Number Sequence Test Program";
|
||||
homepage = "http://www.fourmilab.ch/random/";
|
||||
homepage = "https://www.fourmilab.ch/random/";
|
||||
platforms = platforms.all;
|
||||
license = licenses.publicDomain;
|
||||
};
|
||||
|
@ -78,9 +78,9 @@ in stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://code.dogmap.org./fdtools/";
|
||||
homepage = "https://code.dogmap.org/fdtools/";
|
||||
description = "A set of utilities for working with file descriptors";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ lib.maintainers.Profpatsch ];
|
||||
};
|
||||
|
@ -28,7 +28,7 @@ buildGoPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "An implementation of blockchain technology, leveraging familiar and proven technologies";
|
||||
homepage = "https://wiki.hyperledger.org/projects/Fabric";
|
||||
homepage = "https://wiki.hyperledger.org/display/fabric";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.marsam ];
|
||||
};
|
||||
|
@ -172,9 +172,9 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A daemon for managing internet connections";
|
||||
homepage = "https://01.org/connman";
|
||||
homepage = "https://git.kernel.org/pub/scm/network/connman/connman.git/";
|
||||
maintainers = [ maintainers.matejc ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
};
|
||||
}
|
||||
|
@ -71,8 +71,8 @@ stdenv.mkDerivation rec {
|
||||
Davix provides an API and a set of command line tools";
|
||||
|
||||
license = licenses.lgpl2Plus;
|
||||
homepage = "http://dmc.web.cern.ch/projects/davix/home";
|
||||
changelog = "https://github.com/cern-fts/davix/blob/devel/RELEASE-NOTES.md";
|
||||
homepage = "https://github.com/cern-fts/davix";
|
||||
changelog = "https://github.com/cern-fts/davix/blob/R_${lib.replaceStrings ["."] ["_"] version}/RELEASE-NOTES.md";
|
||||
maintainers = with maintainers; [ adev ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
@ -17,8 +17,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Portable DHCPv6 implementation";
|
||||
homepage = "http://www.klub.com.pl/dhcpv6/";
|
||||
license = licenses.gpl2;
|
||||
homepage = "https://klub.com.pl/dhcpv6/";
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ fpletz ];
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
Makes your machine appear to be anywhere on the internet
|
||||
to any host running a (UDP) unix traceroute
|
||||
'';
|
||||
homepage = "https://moxie.org/software/fakeroute/";
|
||||
homepage = "https://github.com/museoa/fakeroute"; # Formerly https://moxie.org/software/fakeroute/
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -34,9 +34,9 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Small and lightweight IEEE802.11 wireless LAN analyzer with a text interface";
|
||||
homepage = "http://br1.einfach.org/tech/horst/";
|
||||
homepage = "https://github.com/br101/horst";
|
||||
maintainers = [ maintainers.fpletz ];
|
||||
license = licenses.gpl3;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -6,9 +6,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
src = fetchurl {
|
||||
urls = [
|
||||
"https://lftp.tech/ftp/${pname}-${version}.tar.xz"
|
||||
"https://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/${pname}-${version}.tar.xz"
|
||||
"https://lftp.yar.ru/ftp/${pname}-${version}.tar.xz"
|
||||
"https://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/${pname}-${version}.tar.xz"
|
||||
];
|
||||
sha256 = "03b7y0h3mf4jfq5y8zw6hv9v44z3n6i8hc1iswax96y3z7sc85y5";
|
||||
};
|
||||
@ -31,8 +30,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A file transfer program supporting a number of network protocols";
|
||||
homepage = "https://lftp.tech/";
|
||||
license = licenses.gpl3;
|
||||
homepage = "https://lftp.yar.ru/";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
|
@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Belgian electronic identity card (eID) middleware";
|
||||
homepage = "https://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/";
|
||||
homepage = "https://eid.belgium.be/en";
|
||||
license = licenses.lgpl3Only;
|
||||
longDescription = ''
|
||||
Allows user authentication and digital signatures with Belgian ID cards.
|
||||
|
@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Text completion and compression using GPT-2";
|
||||
homepage = "https://bellard.org/nncp/gpt2tc.html";
|
||||
homepage = "https://bellard.org/libnc/gpt2tc.html";
|
||||
license = licenses.unfree;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with maintainers; [ anna328p ];
|
||||
|
@ -32,7 +32,7 @@ stdenv.mkDerivation {
|
||||
AVI type 2, Quicktime DV, a series of JPEG stills or MPEG2-TS.
|
||||
'';
|
||||
|
||||
homepage = "http://kinodv.org/";
|
||||
homepage = "https://github.com/ddennedy/dvgrab"; # Formerly http://www.kinodv.org/
|
||||
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.gnu ++ platforms.linux;
|
||||
|
Loading…
Reference in New Issue
Block a user