Added myself as the maintainer of some packages
svn path=/nixpkgs/trunk/; revision=16221
This commit is contained in:
parent
aa34103ac7
commit
dd89941fb2
|
@ -23,6 +23,7 @@ rec {
|
||||||
name = "monotone-viz-" + version;
|
name = "monotone-viz-" + version;
|
||||||
meta = {
|
meta = {
|
||||||
description = "Monotone commit tree visualizer";
|
description = "Monotone commit tree visualizer";
|
||||||
|
maintainers = [args.lib.maintainers.raskin];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{stdenv, fetchurl, boost, zlib, botan, libidn,
|
{stdenv, fetchurl, boost, zlib, botan, libidn,
|
||||||
lua, pcre, sqlite}:
|
lua, pcre, sqlite, lib}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.44";
|
version = "0.44";
|
||||||
|
@ -14,4 +14,7 @@ in stdenv.mkDerivation {
|
||||||
export sqlite_LIBS=-lsqlite3
|
export sqlite_LIBS=-lsqlite3
|
||||||
export NIX_LDFLAGS="$NIX_LDFLAGS -ldl"
|
export NIX_LDFLAGS="$NIX_LDFLAGS -ldl"
|
||||||
'';
|
'';
|
||||||
|
meta = {
|
||||||
|
maintainers = [lib.maintainers.raskin];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,5 +54,6 @@ rec {
|
||||||
name = "${pkgName}-" + version;
|
name = "${pkgName}-" + version;
|
||||||
meta = {
|
meta = {
|
||||||
description = "Common Lisp-based ratpoison-like window manager.";
|
description = "Common Lisp-based ratpoison-like window manager.";
|
||||||
|
maintainers = [args.lib.maintainers.raskin];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,5 +69,6 @@ rec {
|
||||||
name = "sbcl-" + version;
|
name = "sbcl-" + version;
|
||||||
meta = {
|
meta = {
|
||||||
description = "Lisp compiler";
|
description = "Lisp compiler";
|
||||||
|
maintainers = [a.lib.maintainers.raskin];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,4 +6,5 @@
|
||||||
alphabetically sorted. */
|
alphabetically sorted. */
|
||||||
|
|
||||||
ludo = "Ludovic Courtès <ludo@gnu.org>";
|
ludo = "Ludovic Courtès <ludo@gnu.org>";
|
||||||
|
raskin = "Michael Raskin <7c6f434c@mail.ru>";
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,5 +24,6 @@ rec {
|
||||||
name = "dmtx-" + version;
|
name = "dmtx-" + version;
|
||||||
meta = {
|
meta = {
|
||||||
description = "DataMatrix (2D bar code) processing tools.";
|
description = "DataMatrix (2D bar code) processing tools.";
|
||||||
|
maintainers = [args.lib.maintainers.raskin];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,5 +46,6 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
description = "A relational filesystem on top of FUSE";
|
description = "A relational filesystem on top of FUSE";
|
||||||
inherit src;
|
inherit src;
|
||||||
|
maintainers = [args.lib.maintainers.raskin];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -2042,7 +2042,7 @@ let
|
||||||
|
|
||||||
monotone = import ../applications/version-management/monotone {
|
monotone = import ../applications/version-management/monotone {
|
||||||
inherit stdenv fetchurl boost zlib botan libidn pcre
|
inherit stdenv fetchurl boost zlib botan libidn pcre
|
||||||
sqlite;
|
sqlite lib;
|
||||||
lua = lua5;
|
lua = lua5;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue