tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
feh: 3.10.1 -> 3.10.2
gepbird.tngl.sh
2 years ago
34afff7c
cec578e2
verified
This commit was signed with the committer's
known signature
.
gepbird.tngl.sh
SSH Key Fingerprint:
SHA256:MP2UpIRtJpbFFqyucP431H/FPCfn58UhEUTro4lXtRs=
+3
-12
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
feh
default.nix
+3
-12
pkgs/applications/graphics/feh/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, makeWrapper, fetchpatch
1
1
+
{ lib, stdenv, fetchFromGitHub, makeWrapper
2
2
, xorg, imlib2, libjpeg, libpng
3
3
, curl, libexif, jpegexiforient, perl
4
4
, enableAutoreload ? !stdenv.hostPlatform.isDarwin }:
5
5
6
6
stdenv.mkDerivation rec {
7
7
pname = "feh";
8
8
-
version = "3.10.1";
8
8
+
version = "3.10.2";
9
9
10
10
src = fetchFromGitHub {
11
11
owner = "derf";
12
12
repo = pname;
13
13
rev = version;
14
14
-
hash = "sha256-1dz04RcaoP79EoE+SsatXm2wMRCbNnmAzMECYk3y3jg=";
14
14
+
hash = "sha256-378rhZhpcua3UbsY0OcGKGXdMIQCuG84YjJ9vfJhZVs=";
15
15
};
16
16
-
17
17
-
patches = [
18
18
-
# upstream PR: https://github.com/derf/feh/pull/723
19
19
-
(fetchpatch {
20
20
-
name = "fix-right-click-buffer-overflow.patch";
21
21
-
url = "https://github.com/derf/feh/commit/2c31f8863b80030e772a529ade519fc2fee4a991.patch";
22
22
-
sha256 = "sha256-sUWS06qt1d1AyGfqKb+1BzZslYxOzur4q0ePEHcTz1g=";
23
23
-
})
24
24
-
];
25
16
26
17
outputs = [ "out" "man" "doc" ];
27
18