nixpkgs/pkgs/development/libraries/libfilezilla/default.nix
R. RyanTM b7446bedc8 libfilezilla: 0.12.2 -> 0.12.3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libfilezilla/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 0.12.3 with grep in /nix/store/lnachvvi16drxzbfhcn8qwq5y1b0zz7p-libfilezilla-0.12.3
- directory tree listing: https://gist.github.com/7e151bf94cbf478496df9bee90494f78
- du listing: https://gist.github.com/c3f30a344f3a9f315027869969153779
2018-06-14 04:16:05 -07:00

20 lines
613 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libfilezilla-${version}";
version = "0.12.3";
src = fetchurl {
url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
sha256 = "1v606kcz2rdmmlwxrv3xvwh7ia1nh6jfc9bhjw2r4ai3rm16gch5";
};
meta = with stdenv.lib; {
homepage = https://lib.filezilla-project.org/;
description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}