libchardet: 1.0.4 -> 1.0.5

This commit is contained in:
Franz Pletz 2017-06-20 05:45:10 +02:00
parent 63eb0e9c37
commit 45035b74df
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,11 +1,14 @@
{ stdenv, fetchurl, perl }:
{ stdenv, fetchFromGitHub, perl }:
stdenv.mkDerivation rec {
name = "libchardet-1.0.4";
src = fetchurl {
url = "http://yupmin.net/wp-content/uploads/2014/03/libchardet-1.0.4.tar.bz2";
sha256 = "0cvwba4la25qw70ap8jd5r743a9jshqd26nnbh5ph68zj1imlgzl";
name = "libchardet-${version}";
version = "1.0.5";
src = fetchFromGitHub {
owner = "Joungkyun";
repo = "libchardet";
rev = version;
sha256 = "0c1k5hf3ssh3cm72w2zpy5k73vhy1gyq5s9rqdawqqa4al8syyvn";
};
nativeBuildInputs = [ perl ];