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:
parent
071bcf356e
commit
a1ca4985e3
@ -1,11 +1,13 @@
|
|||||||
{ stdenv, fetchurl, gnused, perl, libgcrypt, zlib, bzip2 }:
|
{ stdenv, fetchFromGitHub, gnused, perl, libgcrypt, zlib, bzip2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "munge-0.5.11";
|
name = "munge-0.5.11";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://munge.googlecode.com/files/${name}.tar.bz2";
|
owner = "dun";
|
||||||
sha256 = "19aijdrjij2g0xpqgl198jh131j94p4gvam047gsdc0wz0a5c1wf";
|
repo = "munge";
|
||||||
|
rev = "${name}";
|
||||||
|
sha256 = "02847p742nq3cb8ayf5blrdicybq72nfsnggqkxr33cpppmsfwg9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gnused perl libgcrypt zlib bzip2 ];
|
buildInputs = [ gnused perl libgcrypt zlib bzip2 ];
|
||||||
@ -20,11 +22,10 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://code.google.com/p/munge/;
|
|
||||||
description = ''
|
description = ''
|
||||||
An authentication service for creating and validating credentials
|
An authentication service for creating and validating credentials
|
||||||
'';
|
'';
|
||||||
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user