mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
libmpack: init at 1.0.2
This commit is contained in:
parent
e5177a9642
commit
4aa0e50388
25
pkgs/development/libraries/libmpack/default.nix
Normal file
25
pkgs/development/libraries/libmpack/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub, libtool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libmpack-${version}";
|
||||
version = "1.0.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "tarruda";
|
||||
repo = "libmpack";
|
||||
rev = version;
|
||||
sha256 = "0s391vyz1gv4j95zdyvxspw7c0xq7d7b4fh0yxrgqqqp5js1rlj0";
|
||||
};
|
||||
buildInputs = [ libtool ];
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib/libmpack
|
||||
cp -R build/* $out/lib/libmpack
|
||||
rm -rf $out/lib/libmpack/debug
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
description = "Simple implementation of msgpack in C";
|
||||
homepage = "https://github.com/tarruda/libmpack/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -2282,6 +2282,8 @@ in
|
||||
|
||||
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };
|
||||
|
||||
libmpack = callPackage ../development/libraries/libmpack { };
|
||||
|
||||
libiberty = callPackage ../development/libraries/libiberty { };
|
||||
|
||||
libiberty_static = callPackage ../development/libraries/libiberty { staticBuild = true; };
|
||||
@ -14404,6 +14406,7 @@ in
|
||||
gtkvnc = gtkvnc.override { enableGTK3 = true; };
|
||||
spice_gtk = spice_gtk.override { enableGTK3 = true; };
|
||||
};
|
||||
|
||||
virtmanager = callPackage ../applications/virtualization/virt-manager {
|
||||
inherit (gnome) gnome_python;
|
||||
vte = gnome3.vte;
|
||||
|
Loading…
Reference in New Issue
Block a user