mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
41 lines
797 B
Nix
41 lines
797 B
Nix
{ stdenv
|
|
, lib
|
|
, pkg-config
|
|
, libevent
|
|
, libressl
|
|
, libbsd
|
|
, fetchurl
|
|
, readline
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kamid";
|
|
version = "0.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/omar-polo/kamid/releases/download/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-23LgcZ+R6wcUz1fZA+IbhyshfQOTyiFPZ+uKVwOh680=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libevent
|
|
libressl
|
|
readline
|
|
libbsd
|
|
];
|
|
|
|
makeFlags = [ "AR:=$(AR)" ];
|
|
|
|
meta = with lib; {
|
|
description = "A FREE, easy-to-use and portable implementation of a 9p file server daemon for UNIX-like systems";
|
|
homepage = "https://kamid.omarpolo.com";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ heph2 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|