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:
commit
3352bd83d6
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue