lol

Merge pull request #80669 from wucke13/webdis

webdis: init at 0.1.9

authored by

Mario Rodas and committed by
GitHub
0bb72bbf a077102d

+38
+36
pkgs/development/tools/database/webdis/default.nix
··· 1 + { stdenv, fetchFromGitHub, hiredis, http-parser, jansson, libevent, fetchpatch }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "webdis"; 5 + version = "0.1.9"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "nicolasff"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "1kglzbs1sw3w05i678qr3lv4pxia20k2a8s3pjhfcxdlnlcy23sk"; 12 + }; 13 + 14 + patches = [ 15 + # Do not use DESTDIR. See: https://github.com/nicolasff/webdis/pull/172 16 + (fetchpatch { 17 + url = "https://github.com/nicolasff/webdis/commit/a44a2964a59f2e583f4945eeb65cd19235059270.patch"; 18 + sha256 = "0i41p98gc201vpp5ppjc9gxdyb1bpimr0qrvibaf3iq3sy4jr1gb"; 19 + }) 20 + ]; 21 + 22 + buildInputs = [ hiredis http-parser jansson libevent ]; 23 + 24 + makeFlags = [ 25 + "PREFIX=${placeholder "out"}" 26 + "CONFDIR=${placeholder "out"}/share/webdis" 27 + ]; 28 + 29 + meta = with stdenv.lib; { 30 + description = "A Redis HTTP interface with JSON output"; 31 + homepage = "https://webd.is/"; 32 + license = licenses.bsd2; 33 + platforms = platforms.unix; 34 + maintainers = with maintainers; [ wucke13 ]; 35 + }; 36 + }
+2
pkgs/top-level/all-packages.nix
··· 10856 10856 10857 10857 watson-ruby = callPackage ../development/tools/misc/watson-ruby {}; 10858 10858 10859 + webdis = callPackage ../development/tools/database/webdis { }; 10860 + 10859 10861 xc3sprog = callPackage ../development/tools/misc/xc3sprog { }; 10860 10862 10861 10863 xcodebuild = callPackage ../development/tools/xcbuild/wrapper.nix {