ctypes_sh: init at 1.1
This commit is contained in:
parent
d81797a248
commit
1e2f49abd1
28
pkgs/development/libraries/ctypes_sh/default.nix
Normal file
28
pkgs/development/libraries/ctypes_sh/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook, pkgconfig
|
||||
, zlib, libffi, elfutils, libdwarf
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ctypes.sh";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "taviso";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "07rqbdxw33h92mllh0srymjjx52mddafs3jyzqpsflq3v0l0dk37";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [ zlib libffi elfutils libdwarf ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A foreign function interface for bash";
|
||||
homepage = "https://github.com/taviso/ctypes.sh";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ tadeokondrak ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -10144,6 +10144,8 @@ in
|
||||
|
||||
cryptominisat = callPackage ../applications/science/logic/cryptominisat { };
|
||||
|
||||
ctypes_sh = callPackage ../development/libraries/ctypes_sh { };
|
||||
|
||||
curlcpp = callPackage ../development/libraries/curlcpp { };
|
||||
|
||||
curlpp = callPackage ../development/libraries/curlpp { };
|
||||
|
Loading…
Reference in New Issue
Block a user