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