Merge pull request #220149 from DamienCassou/offpunk-1.9

authored by Damien Cassou and committed by GitHub e40b5250 1432d3f6

+5 -3
+5 -3
pkgs/applications/networking/browsers/offpunk/default.nix
··· 1 1 { 2 2 fetchFromSourcehut, 3 + installShellFiles, 3 4 less, 4 5 lib, 5 6 makeWrapper, ··· 31 32 in 32 33 stdenv.mkDerivation (finalAttrs: { 33 34 pname = "offpunk"; 34 - version = "1.8"; 35 + version = "1.9"; 35 36 36 37 src = fetchFromSourcehut { 37 38 owner = "~lioploum"; 38 39 repo = "offpunk"; 39 40 rev = "v${finalAttrs.version}"; 40 - sha256 = "0xv7b3qkwyq55sz7c0v0pknrpikhzyqgr5y4y30cwa7jd8sn423f"; 41 + sha256 = "sha256-sxX4/7jbNbLwHVfE1lDtjr/luby5zAf6Hy1RcwXZLBA="; 41 42 }; 42 43 43 - nativeBuildInputs = [ makeWrapper ]; 44 + nativeBuildInputs = [ makeWrapper installShellFiles ]; 44 45 buildInputs = otherDependencies ++ pythonDependencies; 45 46 46 47 installPhase = '' ··· 52 53 --set PYTHONPATH "$PYTHONPATH" \ 53 54 --set PATH ${lib.makeBinPath otherDependencies} 54 55 56 + installManPage man/*.1 55 57 runHook postInstall 56 58 ''; 57 59