From a1ca4985e3f052302fc422f53acafc8eac73fc38 Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Wed, 28 Oct 2015 11:22:40 -0500 Subject: Munge is buildable/usable on osx. Also update the url to point to the migrated from google code url to github. --- pkgs/tools/security/munge/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'pkgs/tools/security') diff --git a/pkgs/tools/security/munge/default.nix b/pkgs/tools/security/munge/default.nix index f94eaabd2a4b..96847c983f12 100644 --- a/pkgs/tools/security/munge/default.nix +++ b/pkgs/tools/security/munge/default.nix @@ -1,11 +1,13 @@ -{ stdenv, fetchurl, gnused, perl, libgcrypt, zlib, bzip2 }: +{ stdenv, fetchFromGitHub, gnused, perl, libgcrypt, zlib, bzip2 }: stdenv.mkDerivation rec { name = "munge-0.5.11"; - src = fetchurl { - url = "http://munge.googlecode.com/files/${name}.tar.bz2"; - sha256 = "19aijdrjij2g0xpqgl198jh131j94p4gvam047gsdc0wz0a5c1wf"; + src = fetchFromGitHub { + owner = "dun"; + repo = "munge"; + rev = "${name}"; + sha256 = "02847p742nq3cb8ayf5blrdicybq72nfsnggqkxr33cpppmsfwg9"; }; buildInputs = [ gnused perl libgcrypt zlib bzip2 ]; @@ -20,11 +22,10 @@ stdenv.mkDerivation rec { ]; meta = { - homepage = http://code.google.com/p/munge/; description = '' An authentication service for creating and validating credentials ''; maintainers = [ stdenv.lib.maintainers.rickynils ]; - platforms = stdenv.lib.platforms.linux; + platforms = stdenv.lib.platforms.unix; }; } -- cgit 1.4.1