3
0
Fork 0
forked from mirrors/nixpkgs

Munge is buildable/usable on osx.

Also update the url to point to the migrated from google code url to
github.
This commit is contained in:
Mitch Tishmack 2015-10-28 11:22:40 -05:00
parent 071bcf356e
commit a1ca4985e3

View file

@ -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;
};
}