-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
93f5351
commit d9b1f22
Showing
12 changed files
with
263 additions
and
299 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
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 @@ | ||
{ lib, buildGo120Module, fetchFromGitHub }: | ||
buildGo120Module rec { | ||
pname = "comcast"; | ||
version = "1.0.1"; | ||
|
||
# this is forked to fix go mod stuff | ||
src = fetchFromGitHub { | ||
owner = "jpetrucciani"; | ||
repo = "comcast"; | ||
rev = "93b2589b3e677c4f351c2ee7bf8709ce762ca697"; | ||
hash = "sha256-jfVxoKkZscemOdlyQNFXckhlEcl7UZ+MPoIQu2lcUaE="; | ||
}; | ||
|
||
vendorHash = "sha256-AruaKBvPmHw13NTr0folQW1HouRVMW5M3gbFWT1tF/s="; | ||
|
||
# disable checks because they need networking | ||
doCheck = false; | ||
|
||
meta = with lib; { | ||
inherit (src.meta) homepage; | ||
description = "Simulating shitty network connections so you can build better systems"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ jpetrucciani ]; | ||
}; | ||
} |
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,23 @@ | ||
{ lib, fetchFromGitHub, rustPlatform }: | ||
let | ||
pname = "lastresort"; | ||
version = "0.4.0"; | ||
in | ||
rustPlatform.buildRustPackage rec { | ||
inherit pname version; | ||
|
||
src = fetchFromGitHub { | ||
owner = "ctsrc"; | ||
repo = "Base256"; | ||
rev = "v${version}"; | ||
sha256 = "sha256-wwwm7x42Fk7Hsf1rE+dKLQJGTkmZnbFGDl5OX3gJ1rU="; | ||
}; | ||
|
||
cargoSha256 = "sha256-tt5B8jt3DSb7LWCCDWITpe9XD/EmFbGubUmlysFqRuM="; | ||
|
||
meta = with lib; { | ||
description = "Encode and decode data in base 256 easily typed words"; | ||
license = licenses.isc; | ||
maintainers = with maintainers; [ jpetrucciani ]; | ||
}; | ||
} |
Oops, something went wrong.