Commit 0defd769 authored by Doron Behar's avatar Doron Behar
Browse files

castget: 2.0.0 -> 2.0.1

parent 2e8194d4
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub
, autoreconfHook
{ lib
, stdenv
, fetchurl
, pkg-config
, glib
, ronn
@@ -11,14 +12,11 @@

stdenv.mkDerivation rec {
  pname = "castget";
  version = "2.0.0";
  version = "2.0.1";

  src = fetchFromGitHub {
    owner = "mlj";
    repo = pname;
    # Upstream uses `_` instead of `.` for the version
    rev = "rel_${lib.replaceStrings ["."] ["_"] version}";
    sha256 = "1129x64rw587q3sdpa3lrgs0gni5f0siwbvmfz8ya4zkbhgi2ik7";
  src = fetchurl {
    url = "http://savannah.nongnu.org/download/castget/castget-${version}.tar.bz2";
    hash = "sha256-Q4tffsfjGkXtN1ZjD+RH9CAVrNpT7AkgL0hihya16HU=";
  };

  # without this, the build fails because of an encoding issue with the manual page.
@@ -34,7 +32,6 @@ stdenv.mkDerivation rec {
    ronn
    # See comment on locale above
    glibcLocales
    autoreconfHook
    pkg-config
  ];