Merge branch 'master' into staging

More mass rebuilds from master.
This commit is contained in:
Vladimír Čunát
2017-05-29 10:46:41 +02:00
35 changed files with 515 additions and 106 deletions

View File

@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
isIbusEngine = true;
description = "m17n engine for ibus";
homepage = https://github.com.com/ibus/ibus-m17n;
homepage = https://github.com/ibus/ibus-m17n;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];

View File

@@ -2,14 +2,14 @@
buildGoPackage rec {
name = "fsql-${version}";
version = "0.1.0";
version = "0.1.1";
goPackagePath = "github.com/kshvmdn/fsql";
src = fetchgit {
rev = "v${version}";
rev = "refs/tags/v${version}";
url = "https://github.com/kshvmdn/fsql";
sha256 = "1wkf9rr6x4b5bvxj9zwfw9hd870c831j7mc6fvd448id653wh122";
sha256 = "1zvblhfd15l86dcx0p12yrc2rrmfdpzyd107508pb72r2ar638vh";
};
meta = with stdenv.lib; {

View File

@@ -1,13 +1,14 @@
{ stdenv, fetchurl, libxml2, libxslt, docbook-xsl, docbook_xml_dtd_44, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }:
{ stdenv, fetchgit, libxml2, libxslt, docbook-xsl, docbook_xml_dtd_44, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "moreutils-${version}";
version = "0.59";
version = "0.61";
src = fetchurl {
url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz";
sha256 = "1d6ik3j4lwp90vb93p7yv60k6vk2chz448d1z9xrmxvv371i33m4";
src = fetchgit {
url = "git://git.joeyh.name/moreutils";
rev = "refs/tags/${version}";
sha256 = "1qvwlq0a2zs7qkjqc9c842979axkjfdr7nic1gsm4zc6jd72y7pr";
};
preBuild = ''
@@ -25,7 +26,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Growing collection of the unix tools that nobody thought to write long ago when unix was young";
homepage = https://joeyh.name/code/moreutils/;
maintainers = with maintainers; [ koral ];
maintainers = with maintainers; [ koral pSub ];
platforms = platforms.all;
};
}

View File

@@ -2,19 +2,23 @@
stdenv.mkDerivation rec {
name = "pick-${version}";
version = "1.4.0";
version = "1.6.1";
src = fetchFromGitHub {
owner = "thoughtbot";
repo = "pick";
rev = "v${version}";
sha256 = "113if0jh7svwrwrxhrsbi7h1whfr5707v2ny4dc9kk2sjbv6b9pg";
sha256 = "0iw3yqwg8j0pg56xx52xwn7n95vxlqbqh71zrc934v4mq971qlhd";
};
buildInputs = [ ncurses ];
nativeBuildInputs = [ autoreconfHook ];
postPatch = ''
sed -i -e 's/\[curses]/\[ncurses]/g' configure.ac
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Fuzzy text selection utility";

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "simpleproxy-${version}";
version = "3.5";
rev = "v.${version}";
src = fetchFromGitHub {
inherit rev;
owner = "vzaliva";
repo = "simpleproxy";
sha256 = "1my9g4vp19dikx3fsbii4ichid1bs9b9in46bkg05gbljhj340f6";
};
meta = with stdenv.lib; {
homepage = https://github.com/vzaliva/simpleproxy;
description = "A simple TCP proxy";
license = licenses.gpl2;
maintainers = [ maintainers.montag451 ];
};
}

View File

@@ -0,0 +1,23 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub, pkgs }:
buildGoPackage rec {
name = "cfssl-${version}";
version = "20170527";
goPackagePath = "github.com/cloudflare/cfssl";
src = fetchFromGitHub {
owner = "cloudflare";
repo = "cfssl";
rev = "114dc9691ec7bf3dac49d5953eccf7d91a0e0904";
sha256 = "1ijq43mrzrf1gkgj5ssxq7sgy6sd4rl706dzqkq9krqv5f6kwhj1";
};
meta = with stdenv.lib; {
homepage = https://cfssl.org/;
description = "Cloudflare's PKI and TLS toolkit";
platforms = platforms.linux;
license = licenses.bsd2;
maintainers = with maintainers; [ mbrgm ];
};
}