17 lines
461 B
Nix
17 lines
461 B
Nix
{ amberol, fetchFromGitLab, rustPlatform }:
|
|
|
|
amberol.overrideAttrs (_: rec {
|
|
version = "0.9.1";
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "amberol";
|
|
rev = version;
|
|
hash = "sha256-UZFOQw9eXSyCey4YQ4pWV91BIo+5tFw1N8es5H03+fc=";
|
|
};
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "amberol-${version}";
|
|
hash = "sha256-ebo718+HAZFd7Pjy06jAzmaLdjR3o4Hn0xEeO7yiIC0=";
|
|
};
|
|
})
|