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