mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
shutter: 0.94 -> 0.94.2 (#49546)
* shutter: 0.94 -> 0.94.2 * shutter: dependencies refresh procps and perlPackages.FileBaseDir were missing Perl package JSONMaybeXS replaces JSONXS Moved makeWrapper to nativeBuildInputs
This commit is contained in:
parent
8b54203727
commit
5a1708b1ab
|
@ -1,27 +1,28 @@
|
|||
{ stdenv, fetchurl, perl, perlPackages, makeWrapper, imagemagick, gdk_pixbuf, librsvg
|
||||
, hicolor-icon-theme
|
||||
, hicolor-icon-theme, procps
|
||||
}:
|
||||
|
||||
let
|
||||
perlModules = with perlPackages;
|
||||
[ Gnome2 Gnome2Canvas Gtk2 Glib Pango Gnome2VFS Gnome2Wnck Gtk2ImageView
|
||||
Gtk2Unique FileWhich FileCopyRecursive XMLSimple NetDBus XMLTwig
|
||||
Gtk2Unique FileBaseDir FileWhich FileCopyRecursive XMLSimple NetDBus XMLTwig
|
||||
XMLParser HTTPMessage ProcSimple SortNaturally LocaleGettext
|
||||
ProcProcessTable URI ImageExifTool Gtk2AppIndicator LWP JSON
|
||||
PerlMagick WWWMechanize HTTPDate HTMLForm HTMLParser HTMLTagset JSONXS
|
||||
PerlMagick WWWMechanize HTTPDate HTMLForm HTMLParser HTMLTagset JSONMaybeXS
|
||||
commonsense HTTPCookies NetOAuth PathClass GooCanvas X11Protocol Cairo
|
||||
EncodeLocale TryTiny TypesSerialiser LWPMediaTypes
|
||||
];
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "shutter-0.94";
|
||||
name = "shutter-0.94.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://launchpad.net/shutter/0.9x/0.94/+download/shutter-0.94.tar.gz";
|
||||
sha256 = "943152cdf9e1b2096d38e3da9622d8bf97956a08eda747c3e7fcc564a3f0f40d";
|
||||
url = "https://launchpad.net/shutter/0.9x/0.94.2/+download/shutter-0.94.2.tar.gz";
|
||||
sha256 = "0mas7npm935j4rhqqjn226822s9sa4bsxrkp0b5fjj3z096k6vw0";
|
||||
};
|
||||
|
||||
buildInputs = [ perl makeWrapper gdk_pixbuf librsvg ] ++ perlModules;
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ perl procps gdk_pixbuf librsvg ] ++ perlModules;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out"
|
||||
|
|
Loading…
Reference in a new issue