3
0
Fork 0
forked from mirrors/nixpkgs

sope: 5.1.1 -> 5.2.0

This commit is contained in:
ajs124 2021-08-19 17:22:41 +02:00
parent 14b0f20fa1
commit 794ebddc88

View file

@ -1,21 +1,21 @@
{ gnustep, lib, fetchFromGitHub , libxml2, openssl_1_1 { gnustep, lib, fetchFromGitHub , libxml2, openssl
, openldap, mariadb, libmysqlclient, postgresql }: , openldap, mariadb, libmysqlclient, postgresql }:
with lib; with lib;
gnustep.stdenv.mkDerivation rec { gnustep.stdenv.mkDerivation rec {
pname = "sope"; pname = "sope";
version = "5.1.1"; version = "5.2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "inverse-inc"; owner = "inverse-inc";
repo = pname; repo = pname;
rev = "SOPE-${version}"; rev = "SOPE-${version}";
sha256 = "0pap7c38kgadyp1a6qkmf9xhk69ybpmhfd4kc2n5nafhdbvks985"; sha256 = "14s9rcnglkwl0nmbmpdxxbiqqnr3m8n7x69idm1crgbbjkj4gi68";
}; };
hardeningDisable = [ "format" ]; hardeningDisable = [ "format" ];
nativeBuildInputs = [ gnustep.make ]; nativeBuildInputs = [ gnustep.make ];
buildInputs = flatten ([ gnustep.base libxml2 openssl_1_1 ] buildInputs = flatten ([ gnustep.base libxml2 openssl ]
++ optional (openldap != null) openldap ++ optional (openldap != null) openldap
++ optionals (mariadb != null) [ libmysqlclient mariadb ] ++ optionals (mariadb != null) [ libmysqlclient mariadb ]
++ optional (postgresql != null) postgresql); ++ optional (postgresql != null) postgresql);