4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
974 B
Nix
39 lines
974 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, asio
|
|
, openssl
|
|
, patches
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "restbed";
|
|
version = "2016-09-15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Corvusoft";
|
|
repo = "restbed";
|
|
rev = "34187502642144ab9f749ab40f5cdbd8cb17a54a";
|
|
sha256 = "1jb38331fcicyiisqdprhq6zwfc6g518fm3l4qw9aiv5k9nqim22";
|
|
};
|
|
|
|
inherit patches;
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ asio openssl ];
|
|
|
|
meta = with lib; {
|
|
description = "HTTP framework for building networked applications";
|
|
longDescription = ''
|
|
HTTP framework for building networked applications that require seamless
|
|
and secure communication, with the flexability to model a range of
|
|
business processes. Targeting mobile, tablet, desktop, and embedded
|
|
production environments.
|
|
'';
|
|
homepage = "https://corvusoft.co.uk/";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ taeer ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|