Merge branch 'fixups' of git://github.com/thoughtpolice/nixpkgs

Fixups for several of my packages

[ Shea: Includes fixes for criu and duo-unix ]
This commit is contained in:
Shea Levy 2014-03-20 19:56:57 -04:00
commit 3352bd83d6
3 changed files with 9 additions and 5 deletions

View file

@ -1,5 +1,6 @@
{ stdenv, fetchurl, protobuf, protobufc, asciidoc, xmlto, utillinux }:
assert stdenv.system == "x86_64-linux";
stdenv.mkDerivation rec {
name = "criu-${version}";
version = "1.2";
@ -24,14 +25,14 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/etc/logrotate.d
make install PREFIX=$out LIBDIR=$out/lib
make install PREFIX=$out LIBDIR=$out/lib ASCIIDOC=${asciidoc}/bin/asciidoc XMLTO=${xmlto}/bin/xmlto
'';
meta = {
description = "userspace checkpoint/restore for Linux";
homepage = "http://criu.org";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
platforms = [ "x86_64-linux" ];
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}

View file

@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
[ "--with-pam=$(out)/lib/security"
"--prefix=$(out)"
"--sysconfdir=$(out)/etc/duo"
"--with-openssl=${openssl}"
"--enable-lib64=no"
];
meta = {

View file

@ -13,8 +13,9 @@ stdenv.mkDerivation rec {
meta = {
description = "The scrypt encryption utility";
homepage = https://www.tarsnap.com/scrypt.html;
license = "BSD";
platforms = stdenv.lib.platforms.all;
homepage = https://www.tarsnap.com/scrypt.html;
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}