mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 01:42:53 +03:00
sigslot: init at 1.2.1
This commit is contained in:
parent
5ae08b2aaa
commit
0114a58f9a
29
pkgs/development/libraries/sigslot/default.nix
Normal file
29
pkgs/development/libraries/sigslot/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sigslot";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "palacaze";
|
||||
repo = "sigslot";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-FXoKI0aTpZNHHYZnEoPduf3ctOQ/qKoQrrXZPviAvuY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A header-only, thread safe implementation of signal-slots for C++";
|
||||
license = licenses.mit;
|
||||
homepage = "https://github.com/palacaze/sigslot";
|
||||
maintainers = with maintainers; [ azahi ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -4757,6 +4757,8 @@ with pkgs;
|
||||
|
||||
shisho = callPackage ../tools/security/shisho { };
|
||||
|
||||
sigslot = callPackage ../development/libraries/sigslot { };
|
||||
|
||||
siglo = callPackage ../applications/misc/siglo { };
|
||||
|
||||
simg2img = callPackage ../tools/filesystems/simg2img { };
|
||||
|
Loading…
Reference in New Issue
Block a user