tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
giara: 1.0.1 -> 1.1.0
Daniel Șerbănescu
2 years ago
95746260
2f9c0ffd
+5
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
giara
default.nix
+5
-2
pkgs/applications/networking/giara/default.nix
reviewed
···
18
18
}:
19
19
python3.pkgs.buildPythonApplication rec {
20
20
pname = "giara";
21
21
-
version = "1.0.1";
21
21
+
version = "1.1.0";
22
22
23
23
format = "other";
24
24
···
27
27
owner = "World";
28
28
repo = pname;
29
29
rev = version;
30
30
-
hash = "sha256-hKaniW+bbuKUrETMQGWwvC2kyudK9tCE/R69dOFzdQM=";
30
30
+
hash = "sha256-FTy0ElcoTGXG9eV85pUrF35qKDKOfYIovPtjLfTJVOg=";
31
31
};
32
32
33
33
nativeBuildInputs = [
···
62
62
postPatch = ''
63
63
substituteInPlace meson_post_install.py \
64
64
--replace "gtk-update-icon-cache" "gtk4-update-icon-cache"
65
65
+
# blueprint-compiler expects "profile" to be a string.
66
66
+
substituteInPlace data/ui/headerbar.blp \
67
67
+
--replace "item { custom: profile; }" 'item { custom: "profile"; }'
65
68
'';
66
69
67
70
meta = with lib; {