tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
megapixels: 1.3.0 -> 1.4.0
Robert Schütz
4 years ago
801fe645
516715e9
+9
-9
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
megapixels
default.nix
+9
-9
pkgs/applications/graphics/megapixels/default.nix
···
1
{ stdenv
2
, lib
3
-
, fetchFromSourcehut
0
4
, meson
5
, ninja
6
, pkg-config
7
-
, glib
8
, wrapGAppsHook
9
, epoxy
10
, gtk4
···
27
in
28
stdenv.mkDerivation rec {
29
pname = "megapixels";
30
-
version = "1.3.0";
31
32
-
src = fetchFromSourcehut {
33
-
owner = "~martijnbraam";
34
repo = "megapixels";
35
rev = version;
36
-
sha256 = "0dagp1sh5whnnllrydk7ijjid0hmvcbdm8kkzq2g168khdfn80jm";
37
};
38
39
nativeBuildInputs = [
0
40
meson
41
ninja
42
pkg-config
43
-
glib
44
wrapGAppsHook
45
];
46
···
62
63
meta = with lib; {
64
description = "GTK4 camera application that knows how to deal with the media request api";
65
-
homepage = "https://sr.ht/~martijnbraam/Megapixels";
66
-
changelog = "https://git.sr.ht/~martijnbraam/megapixels/refs/${version}";
67
license = licenses.gpl3Only;
68
maintainers = with maintainers; [ OPNA2608 dotlambda ];
69
platforms = platforms.linux;
···
1
{ stdenv
2
, lib
3
+
, fetchFromGitLab
4
+
, glib
5
, meson
6
, ninja
7
, pkg-config
0
8
, wrapGAppsHook
9
, epoxy
10
, gtk4
···
27
in
28
stdenv.mkDerivation rec {
29
pname = "megapixels";
30
+
version = "1.4.0";
31
32
+
src = fetchFromGitLab {
33
+
owner = "postmarketOS";
34
repo = "megapixels";
35
rev = version;
36
+
sha256 = "sha256-I7eevbIg+DEY9hnvat65J4Kem1FFNZc4XzaQQaewP/4=";
37
};
38
39
nativeBuildInputs = [
40
+
glib
41
meson
42
ninja
43
pkg-config
0
44
wrapGAppsHook
45
];
46
···
62
63
meta = with lib; {
64
description = "GTK4 camera application that knows how to deal with the media request api";
65
+
homepage = "https://gitlab.com/postmarketOS/megapixels";
66
+
changelog = "https://gitlab.com/postmarketOS/megapixels/-/tags/${version}";
67
license = licenses.gpl3Only;
68
maintainers = with maintainers; [ OPNA2608 dotlambda ];
69
platforms = platforms.linux;