tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
phototonic: Qt 5 infrastructure update
Thomas Tuegel
10 years ago
3e6a70d9
8bbbb31f
+3
-3
2 changed files
expand all
collapse all
unified
split
pkgs
applications
graphics
phototonic
default.nix
top-level
all-packages.nix
+2
-2
pkgs/applications/graphics/phototonic/default.nix
···
1
1
-
{ stdenv, fetchFromGitHub, qt5, exiv2 }:
1
1
+
{ stdenv, fetchFromGitHub, qtbase, exiv2 }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "phototonic-${version}";
···
11
11
sha256 = "1agd3bsrpljd019qrjvlbim5l0bhpx53dhpc0gvyn0wmcdzn92gj";
12
12
};
13
13
14
14
-
buildInputs = [ qt5.base exiv2 ];
14
14
+
buildInputs = [ qtbase exiv2 ];
15
15
16
16
configurePhase = ''
17
17
sed -i 's;/usr;;' phototonic.pro
+1
-1
pkgs/top-level/all-packages.nix
···
12751
12751
12752
12752
photoqt = qt5.callPackage ../applications/graphics/photoqt { };
12753
12753
12754
12754
-
phototonic = callPackage ../applications/graphics/phototonic { };
12754
12754
+
phototonic = qt5.callPackage ../applications/graphics/phototonic { };
12755
12755
12756
12756
pianobar = callPackage ../applications/audio/pianobar { };
12757
12757