fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchFromGitHub, gnused, perl, libgcrypt, zlib, bzip2 }:
2
3stdenv.mkDerivation rec {
4 name = "munge-0.5.11";
5
6 src = fetchFromGitHub {
7 owner = "dun";
8 repo = "munge";
9 rev = "${name}";
10 sha256 = "02847p742nq3cb8ayf5blrdicybq72nfsnggqkxr33cpppmsfwg9";
11 };
12
13 buildInputs = [ gnused perl libgcrypt zlib bzip2 ];
14
15 preConfigure = ''
16 # Remove the install-data stuff, since it tries to write to /var
17 sed -i '505,511d' src/etc/Makefile.in
18 '';
19
20 configureFlags = [
21 "--localstatedir=/var"
22 ];
23
24 meta = {
25 description = ''
26 An authentication service for creating and validating credentials
27 '';
28 maintainers = [ stdenv.lib.maintainers.rickynils ];
29 platforms = stdenv.lib.platforms.unix;
30 };
31}