tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tellico: 3.4.1 -> 3.4.4
Peter Hoeg
3 years ago
afd99c07
032b5c19
+13
-9
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
tellico
default.nix
+13
-9
pkgs/applications/misc/tellico/default.nix
···
1
{ lib
2
-
, fetchurl
3
, mkDerivation
4
, cmake
5
, exempi
···
24
25
mkDerivation rec {
26
pname = "tellico";
27
-
version = "3.4.1";
28
29
-
src = fetchurl {
30
-
# version 3.3.0 just uses 3.3 in its file name
31
-
urls = [
32
-
"https://tellico-project.org/files/tellico-${version}.tar.xz"
33
-
"https://tellico-project.org/files/tellico-${lib.versions.majorMinor version}.tar.xz"
34
-
];
35
-
sha256 = "sha256-+FFN6sO0mvlage8JazyrqNZk4onejz1XJPiOK3gnhWE=";
36
};
0
0
0
0
0
37
38
nativeBuildInputs = [
39
cmake
···
1
{ lib
2
+
, fetchFromGitLab
3
, mkDerivation
4
, cmake
5
, exempi
···
24
25
mkDerivation rec {
26
pname = "tellico";
27
+
version = "3.4.4";
28
29
+
src = fetchFromGitLab {
30
+
domain = "invent.kde.org";
31
+
owner = "office";
32
+
repo = pname;
33
+
rev = "v${version}";
34
+
hash = "sha256-Qgan0mnDTQx+KKCAnRpgi9CCbXIRBMQtAyH/Mr20VSw=";
0
35
};
36
+
37
+
postPatch = ''
38
+
substituteInPlace src/gui/imagewidget.h \
39
+
--replace ksane_version.h KF5/ksane_version.h
40
+
'';
41
42
nativeBuildInputs = [
43
cmake