syndicate_utils: 20230518 -> 20230801

This commit is contained in:
Emery Hemingway 2023-08-01 11:17:10 +01:00
parent ee76236c3d
commit c9faca6bf9
2 changed files with 15 additions and 15 deletions

View File

@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1685604690, "lastModified": 1690881426,
"narHash": "sha256-TEAMrNsfZZ2vuSBRU6giSy4xKkXyzdw41Xtio7UWa7M=", "narHash": "sha256-PkcXpzQUI5bO0/bKIXTtpyg1i1eIuPvxnaXZSphQC8I=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "50bc0fd68fcadd68df77d554dff6a27d456827cd", "rev": "e5ee889ca5a14cd0296ea3d9cf63ec680b933d62",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -48,11 +48,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1685587239, "lastModified": 1690856601,
"narHash": "sha256-zpOir1AWpWyQscP5dMpqMrCgBzjzH7Wv0FNUsQ0dcS0=", "narHash": "sha256-OP1w4rwMJscne5ckSfzOjXXQTPzAWM3Mkm4wRmHwCh8=",
"owner": "oxalica", "owner": "oxalica",
"repo": "rust-overlay", "repo": "rust-overlay",
"rev": "acb7e896a73b0cf2c6ffe40b2051eb7f88fc2a10", "rev": "657d170ebe594da9fa32797e38704d45732d0c72",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -1,21 +1,21 @@
{ lib, buildNimPackage, fetchFromGitea, fetchFromGitHub, syndicate }: { lib, buildNimPackage, fetchFromGitea, illwill, syndicate }:
buildNimPackage rec { buildNimPackage (final: prev: {
pname = "syndicate_utils"; pname = "syndicate_utils";
version = "20230518"; version = "20230801";
src = fetchFromGitea { src = fetchFromGitea {
domain = "git.syndicate-lang.org"; domain = "git.syndicate-lang.org";
owner = "ehmry"; owner = "ehmry";
repo = pname; repo = final.pname;
rev = version; rev = final.version;
hash = "sha256-syYxxsl7rbE1FdFsT6ib3eUbxG6nOxbavo04ZzlTFOs="; hash = "sha256-O9n9y0v0cQg5b2P4GjOEKYj6t1fGTMy4v/QpeAScv2Q=";
}; };
propagatedBuildInputs = [ syndicate ]; propagatedBuildInputs = [ illwill syndicate ];
meta = src.meta // { meta = final.src.meta // {
maintainers = [ lib.maintainers.ehmry ]; maintainers = [ lib.maintainers.ehmry ];
license = lib.licenses.unlicense; license = lib.licenses.unlicense;
}; };
} })