Merge pull request #28548 from WilliButz/packageUpdates

update packages: watchman, feh, whois, duc, evemu and debianutils

authored by Jörg Thalheim and committed by GitHub 56429bf9 702c327c

+28 -25
+1
lib/maintainers.nix
··· 619 vrthra = "Rahul Gopinath <rahul@gopinath.org>"; 620 vyp = "vyp <elisp.vim@gmail.com>"; 621 wedens = "wedens <kirill.wedens@gmail.com>"; 622 willtim = "Tim Philip Williams <tim.williams.public@gmail.com>"; 623 winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>"; 624 wizeman = "Ricardo M. Correia <rcorreia@wizy.org>";
··· 619 vrthra = "Rahul Gopinath <rahul@gopinath.org>"; 620 vyp = "vyp <elisp.vim@gmail.com>"; 621 wedens = "wedens <kirill.wedens@gmail.com>"; 622 + willibutz = "Willi Butz <willibutz@posteo.de>"; 623 willtim = "Tim Philip Williams <tim.williams.public@gmail.com>"; 624 winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>"; 625 wizeman = "Ricardo M. Correia <rcorreia@wizy.org>";
+3 -3
pkgs/applications/graphics/feh/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 name = "feh-${version}"; 9 - version = "2.19.1"; 10 11 src = fetchurl { 12 url = "http://feh.finalrewind.org/${name}.tar.bz2"; 13 - sha256 = "1d4ycmai3dpajl0bdr9i56646g4h5j1lb95jjn0nckwcddcj927c"; 14 }; 15 16 outputs = [ "out" "man" "doc" ]; ··· 46 description = "A light-weight image viewer"; 47 homepage = https://derf.homelinux.org/projects/feh/; 48 license = licenses.mit; 49 - maintainers = [ maintainers.viric ]; 50 platforms = platforms.unix; 51 }; 52 }
··· 6 7 stdenv.mkDerivation rec { 8 name = "feh-${version}"; 9 + version = "2.19.3"; 10 11 src = fetchurl { 12 url = "http://feh.finalrewind.org/${name}.tar.bz2"; 13 + sha256 = "1l3yvv0l0ggwlfyhk84p2g9mrqvzqrg1fgalf88kzppvb9jppjay"; 14 }; 15 16 outputs = [ "out" "man" "doc" ]; ··· 46 description = "A light-weight image viewer"; 47 homepage = https://derf.homelinux.org/projects/feh/; 48 license = licenses.mit; 49 + maintainers = [ maintainers.viric maintainers.willibutz ]; 50 platforms = platforms.unix; 51 }; 52 }
+2 -2
pkgs/applications/misc/wordnet/default.nix
··· 1 {stdenv, fetchurl, tcl, tk, xlibsWrapper, makeWrapper}: 2 3 - let version = "3.0"; in 4 - stdenv.mkDerivation { 5 name = "wordnet-${version}"; 6 src = fetchurl { 7 url = "http://wordnetcode.princeton.edu/${version}/WordNet-${version}.tar.bz2";
··· 1 {stdenv, fetchurl, tcl, tk, xlibsWrapper, makeWrapper}: 2 3 + stdenv.mkDerivation rec { 4 + version = "3.0"; 5 name = "wordnet-${version}"; 6 src = fetchurl { 7 url = "http://wordnetcode.princeton.edu/${version}/WordNet-${version}.tar.bz2";
+11 -5
pkgs/development/tools/watchman/default.nix
··· 1 - { stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre 2 - , confFile ? config.watchman.confFile or null 3 }: 4 5 stdenv.mkDerivation rec { 6 name = "watchman-${version}"; 7 8 - version = "4.7.0"; 9 10 src = fetchFromGitHub { 11 owner = "facebook"; 12 repo = "watchman"; 13 rev = "v${version}"; 14 - sha256 = "0xnd7jvrmyxhlw2ggd37swv1mk6vw9j91fdxps6njgvnlfg9zs5n"; 15 }; 16 17 - buildInputs = [ autoconf automake pcre ]; 18 19 configureFlags = [ 20 "--enable-lenient" ··· 25 # https://github.com/facebook/watchman/issues/178 26 "--disable-statedir" 27 ]; 28 29 preConfigure = '' 30 ./autogen.sh
··· 1 + { stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre, 2 + libtool, pkgconfig, openssl, 3 + confFile ? config.watchman.confFile or null 4 }: 5 6 stdenv.mkDerivation rec { 7 name = "watchman-${version}"; 8 9 + version = "4.9.0"; 10 11 src = fetchFromGitHub { 12 owner = "facebook"; 13 repo = "watchman"; 14 rev = "v${version}"; 15 + sha256 = "0fdaj5pmicm6j17d5q7px800m5rmam1a400x3hv1iiifnmhgnkal"; 16 }; 17 18 + buildInputs = [ pcre openssl ]; 19 + nativeBuildInputs = [ autoconf automake pkgconfig libtool ]; 20 21 configureFlags = [ 22 "--enable-lenient" ··· 27 # https://github.com/facebook/watchman/issues/178 28 "--disable-statedir" 29 ]; 30 + 31 + prePatch = '' 32 + patchShebangs . 33 + ''; 34 35 preConfigure = '' 36 ./autogen.sh
+3 -7
pkgs/tools/misc/debianutils/default.nix
··· 1 { stdenv, fetchurl }: 2 3 - let 4 - checksums = { 5 - "4.8.1" = "09phylg8ih1crgxjadkdb8idbpj9ap62a7cbh8qdx2gyvh5mqf9c"; 6 - }; 7 - in stdenv.mkDerivation rec { 8 - version = "4.8.1"; 9 name = "debianutils-${version}"; 10 11 src = fetchurl { 12 url = "mirror://debian/pool/main/d/debianutils/debianutils_${version}.tar.xz"; 13 - sha256 = checksums."${version}"; 14 }; 15 16 meta = {
··· 1 { stdenv, fetchurl }: 2 3 + stdenv.mkDerivation rec { 4 + version = "4.8.2"; 5 name = "debianutils-${version}"; 6 7 src = fetchurl { 8 url = "mirror://debian/pool/main/d/debianutils/debianutils_${version}.tar.xz"; 9 + sha256 = "0s3w3svcsh984zinkxvpzxi7dc0ginqk0nk299fkrr6k7wlmzssd"; 10 }; 11 12 meta = {
+2 -2
pkgs/tools/misc/duc/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "duc-${version}"; 5 - version = "1.4.1"; 6 7 src = fetchFromGitHub { 8 owner = "zevv"; 9 repo = "duc"; 10 rev = "${version}"; 11 - sha256 = "0rnar2zacsb9rvdmp1a62xixhy69s5vh0nwgrklqxhb19qkzhdp7"; 12 }; 13 14 buildInputs = [ autoreconfHook pkgconfig tokyocabinet cairo pango ncurses ];
··· 2 3 stdenv.mkDerivation rec { 4 name = "duc-${version}"; 5 + version = "1.4.3"; 6 7 src = fetchFromGitHub { 8 owner = "zevv"; 9 repo = "duc"; 10 rev = "${version}"; 11 + sha256 = "1h7vll8a78ijan9bmnimmsviywmc39x8h9iikx8vm98kwyxi4xif"; 12 }; 13 14 buildInputs = [ autoreconfHook pkgconfig tokyocabinet cairo pango ncurses ];
+3 -3
pkgs/tools/networking/whois/default.nix
··· 1 { stdenv, fetchFromGitHub, perl, gettext }: 2 3 stdenv.mkDerivation rec { 4 - version = "5.2.17"; 5 name = "whois-${version}"; 6 7 src = fetchFromGitHub { 8 owner = "rfc1036"; 9 repo = "whois"; 10 rev = "v${version}"; 11 - sha256 = "15jnzk0js8wxiapz1bw7jnck0fl3mcli56f9635z9x7vk63ss68z"; 12 }; 13 14 buildInputs = [ perl gettext ]; ··· 32 select the appropriate WHOIS server for most queries. 33 ''; 34 35 - homepage = http://packages.qa.debian.org/w/whois.html; 36 license = licenses.gpl2; 37 maintainers = with maintainers; [ fpletz ]; 38 platforms = platforms.linux;
··· 1 { stdenv, fetchFromGitHub, perl, gettext }: 2 3 stdenv.mkDerivation rec { 4 + version = "5.2.18"; 5 name = "whois-${version}"; 6 7 src = fetchFromGitHub { 8 owner = "rfc1036"; 9 repo = "whois"; 10 rev = "v${version}"; 11 + sha256 = "0jzyq1rj6balc6a28swzgspv55xhkc75dw6wsn159in4ap61bzmi"; 12 }; 13 14 buildInputs = [ perl gettext ]; ··· 32 select the appropriate WHOIS server for most queries. 33 ''; 34 35 + homepage = https://packages.qa.debian.org/w/whois.html; 36 license = licenses.gpl2; 37 maintainers = with maintainers; [ fpletz ]; 38 platforms = platforms.linux;
+3 -3
pkgs/tools/system/evemu/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 name = "evemu-${version}"; 7 - version = "2.4.0"; 8 9 # We could have downloaded a release tarball from cgit, but it changes hash 10 # each time it is downloaded :/ 11 src = fetchgit { 12 url = git://git.freedesktop.org/git/evemu; 13 rev = "refs/tags/v${version}"; 14 - sha256 = "07iha13xrpf4z59rzl9cm2h1zkc5xhyipbd3ajd3c1d4hhpn9w9s"; 15 }; 16 17 nativeBuildInputs = [ pkgconfig autoreconfHook ]; ··· 20 21 meta = with stdenv.lib; { 22 description = "Records and replays device descriptions and events to emulate input devices through the kernel's input system"; 23 - homepage = http://www.freedesktop.org/wiki/Evemu/; 24 repositories.git = git://git.freedesktop.org/git/evemu; 25 license = licenses.gpl2; 26 maintainers = [ maintainers.amorsillo ];
··· 4 5 stdenv.mkDerivation rec { 6 name = "evemu-${version}"; 7 + version = "2.6.0"; 8 9 # We could have downloaded a release tarball from cgit, but it changes hash 10 # each time it is downloaded :/ 11 src = fetchgit { 12 url = git://git.freedesktop.org/git/evemu; 13 rev = "refs/tags/v${version}"; 14 + sha256 = "1m38fxwy2s82vb2qm9aqxinws12akmqqq7q66is931lc3awqkbah"; 15 }; 16 17 nativeBuildInputs = [ pkgconfig autoreconfHook ]; ··· 20 21 meta = with stdenv.lib; { 22 description = "Records and replays device descriptions and events to emulate input devices through the kernel's input system"; 23 + homepage = https://www.freedesktop.org/wiki/Evemu/; 24 repositories.git = git://git.freedesktop.org/git/evemu; 25 license = licenses.gpl2; 26 maintainers = [ maintainers.amorsillo ];