mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18f09e43e3
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 - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.12.2 with grep in /nix/store/1a0qm1j932zsiysy0hjhs8fvg3hsq6cf-libfilezilla-0.12.2 - directory tree listing: https://gist.github.com/13640dfb6e0ad1f3a5005c8c75cbc6c1
20 lines
613 B
Nix
20 lines
613 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libfilezilla-${version}";
|
|
version = "0.12.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
|
|
sha256 = "1v461hwdk74whp89s490dj1z18gfqf9bz9140m5f11rsvrpid33p";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|