Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #56100 from ceedubs/ddgr-to-1.6

ddgr: 1.1 -> 1.6

authored by

Robert Schütz and committed by
GitHub
2ca0cfb0 de2bb109

+10 -17
+5
maintainers/maintainer-list.nix
··· 817 817 github = "cdepillabout"; 818 818 name = "Dennis Gosnell"; 819 819 }; 820 + ceedubs = { 821 + email = "ceedubs@gmail.com"; 822 + github = "ceedubs"; 823 + name = "Cody Allen"; 824 + }; 820 825 cfouche = { 821 826 email = "chaddai.fouche@gmail.com"; 822 827 github = "Chaddai";
+5 -17
pkgs/applications/misc/ddgr/default.nix
··· 1 - {stdenv, fetchpatch, fetchFromGitHub, python3Packages}: 1 + {stdenv, fetchpatch, fetchFromGitHub, python3}: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.1"; 4 + version = "1.6"; 5 5 name = "ddgr-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jarun"; 9 9 repo = "ddgr"; 10 10 rev = "v${version}"; 11 - sha256 = "1q66kwip5y0kfkfldm1x54plz85mjyvv1xpxjqrs30r2lr0najgf"; 11 + sha256 = "04ybbjsf9hpn2p5cjjm15cwvv0mwrmdi19iifrym6ps3rmll0p3c"; 12 12 }; 13 13 14 - buildInputs = [ 15 - (python3Packages.python.withPackages (ps: with ps; [ 16 - requests 17 - ])) 18 - ]; 19 - 20 - patches = [ 21 - (fetchpatch { 22 - sha256 = "1rxr3biq0mk4m0m7dsxr70dhz4fg5siil5x5fy9nymcmhvcm1cdc"; 23 - name = "Fix-zsh-completion.patch"; 24 - url = "https://github.com/jarun/ddgr/commit/10c1a911a3d5cbf3e96357c932b0211d3165c4b8.patch"; 25 - }) 26 - ]; 14 + buildInputs = [ python3 ]; 27 15 28 16 makeFlags = "PREFIX=$(out)"; 29 17 ··· 40 28 homepage = https://github.com/jarun/ddgr; 41 29 description = "Search DuckDuckGo from the terminal"; 42 30 license = licenses.gpl3; 43 - maintainers = with maintainers; [ markus1189 ]; 31 + maintainers = with maintainers; [ ceedubs markus1189 ]; 44 32 platforms = platforms.unix; 45 33 }; 46 34 }