mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
cd4ed37918
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.
20 lines
613 B
Nix
20 lines
613 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libfilezilla-${version}";
|
|
version = "0.13.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
|
|
sha256 = "0sk8kz2zrvf7kp9jrp3l4rpipv4xh0hg8d4h734xyag7vd03rjpz";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|