tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gqview: remove outdated assert, cleanup meta
Sandro Jäckel
4 years ago
9480c98c
66b550c9
+2
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
gqview
default.nix
+2
-5
pkgs/applications/graphics/gqview/default.nix
···
1
1
{ lib, stdenv, fetchurl, pkg-config, gtk2, libpng }:
2
2
3
3
-
assert pkg-config != null && gtk2 != null && libpng != null;
4
4
-
# Note that we cannot just copy gtk's png attribute, since gtk might
5
5
-
# not be linked against png.
6
6
-
# !!! assert libpng == gtk2.libpng;
7
7
-
8
3
stdenv.mkDerivation rec {
9
4
pname = "gqview";
10
5
version = "2.1.5";
···
15
10
};
16
11
17
12
nativeBuildInputs = [ pkg-config ];
13
13
+
18
14
buildInputs = [ gtk2 libpng ];
19
15
20
16
hardeningDisable = [ "format" ];
···
26
22
homepage = "http://gqview.sourceforge.net";
27
23
license = licenses.gpl2;
28
24
platforms = platforms.unix;
25
25
+
maintainers = with maintainers; [ ];
29
26
};
30
27
}