forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
54 changed files
with
933 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19078,6 +19078,12 @@ | |
fingerprint = "640B EDDE 9734 310A BFA3 B257 52ED AE6A 3995 AFAB"; | ||
}]; | ||
}; | ||
whiteley = { | ||
email = "[email protected]"; | ||
github = "whiteley"; | ||
githubId = 2215; | ||
name = "Matt Whiteley"; | ||
}; | ||
WhittlesJr = { | ||
email = "[email protected]"; | ||
github = "WhittlesJr"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ buildGoModule | ||
, lib | ||
, fetchFromGitHub | ||
}: | ||
|
||
buildGoModule rec { | ||
pname = "gerrit-queue"; | ||
version = "0.0.1"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "flokli"; | ||
repo = "gerrit-queue"; | ||
rev = "v${version}"; | ||
hash = "sha256-JkAYqqet6y89RTBU9FuxkMwJiGM6opL0reXbojSal3Y="; | ||
}; | ||
vendorHash = "sha256-+Ig4D46NphzpWKXO23Haea9EqVtpda8v9zLPJkbe3bQ="; | ||
|
||
meta = with lib; { | ||
description = "Merge bot for Gerrit"; | ||
homepage = "https://github.com/flokli/gerrit-queue"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ flokli ]; | ||
mainProgram = "gerrit-queue"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ stdenv, lib, fetchFromGitHub, meson, ninja }: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "simde"; | ||
version = "0.7.6"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "simd-everywhere"; | ||
repo = "simde"; | ||
rev = "v${version}"; | ||
hash = "sha256-pj+zaD5o9XYkTavezcQFzM6ao0IdQP1zjP9L4vcCyEY="; | ||
}; | ||
|
||
nativeBuildInputs = [ meson ninja ]; | ||
|
||
meta = with lib; { | ||
homepage = "https://simd-everywhere.github.io"; | ||
description = "Implementations of SIMD instruction sets for systems which don't natively support them"; | ||
license = with licenses; [mit]; | ||
maintainers = with maintainers; [ whiteley ]; | ||
platforms = flatten (with platforms; [ | ||
arm | ||
armv7 | ||
aarch64 | ||
x86 | ||
power | ||
mips | ||
]); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.