mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 20:02:58 +03:00
parent
fa910f2f74
commit
c35a1b828f
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool }:
|
{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.23.1";
|
version = "1.24.1";
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -9,15 +9,17 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.geany.org/${name}.tar.bz2";
|
url = "http://download.geany.org/${name}.tar.bz2";
|
||||||
sha256 = "1bcgjxywggsljs9kq22kr9xpzrq5xr7pb9d1b71rwryqb5pb25c8";
|
sha256 = "0cwci8876dpgcn60dfvjlciqr8x68iv86psjj148grhzn3chbdbz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gtk2 which pkgconfig intltool ];
|
buildInputs = [ gtk2 which pkgconfig intltool file ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
patchPhase = "patchShebangs .";
|
||||||
|
|
||||||
# This file should normally require a gtk-update-icon-cache -q /usr/share/icons/hicolor command
|
# This file should normally require a gtk-update-icon-cache -q /usr/share/icons/hicolor command
|
||||||
# It have no reasons to exist in a redistribuable package
|
# It have no reasons to exist in a redistribuable package
|
||||||
postInstall = "rm $out/share/icons/hicolor/icon-theme.cache";
|
postInstall = "rm $out/share/icons/hicolor/icon-theme.cache";
|
||||||
|
Loading…
Reference in New Issue
Block a user