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
{ lib, stdenv, fetchurl, pkg-config, gtk2, libpng }:
2
3
-
assert pkg-config != null && gtk2 != null && libpng != null;
4
-
# Note that we cannot just copy gtk's png attribute, since gtk might
5
-
# not be linked against png.
6
-
# !!! assert libpng == gtk2.libpng;
7
-
8
stdenv.mkDerivation rec {
9
pname = "gqview";
10
version = "2.1.5";
···
15
};
16
17
nativeBuildInputs = [ pkg-config ];
0
18
buildInputs = [ gtk2 libpng ];
19
20
hardeningDisable = [ "format" ];
···
26
homepage = "http://gqview.sourceforge.net";
27
license = licenses.gpl2;
28
platforms = platforms.unix;
0
29
};
30
}
···
1
{ lib, stdenv, fetchurl, pkg-config, gtk2, libpng }:
2
0
0
0
0
0
3
stdenv.mkDerivation rec {
4
pname = "gqview";
5
version = "2.1.5";
···
10
};
11
12
nativeBuildInputs = [ pkg-config ];
13
+
14
buildInputs = [ gtk2 libpng ];
15
16
hardeningDisable = [ "format" ];
···
22
homepage = "http://gqview.sourceforge.net";
23
license = licenses.gpl2;
24
platforms = platforms.unix;
25
+
maintainers = with maintainers; [ ];
26
};
27
}