mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
c-for-go: init at a1822f0
This commit is contained in:
parent
792a7ddec9
commit
8f6f6b4eac
24
pkgs/by-name/c-/c-for-go/package.nix
Normal file
24
pkgs/by-name/c-/c-for-go/package.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule {
|
||||
pname = "c-for-go";
|
||||
version = "unstable-2023-09-06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xlab";
|
||||
repo = "c-for-go";
|
||||
# c-for-go is not versioned upstream, so we pin it to a commit hash.
|
||||
rev = "a1822f0a09c1c6c89fc12aeb691a27b3221c73f3";
|
||||
hash = "sha256-P7lrAVyZ6fV63gVvLvsKt14pi32Pr2eVLT2mTdHHdrQ=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-u/GWniw5UQBOtnj3ErdxL80j2Cv6cbMwvP1im3dZ2cM=";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/xlab/c-for-go";
|
||||
description = "Automatic C-Go Bindings Generator for the Go Programming Language";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ msanft ];
|
||||
mainProgram = "c-for-go";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user