mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
8ddb299845
1. Remove use of `rec` keyword; 2. Remove parameterization of `pname`; 3. Remove `with lib;` from meta attribute.
35 lines
854 B
Nix
35 lines
854 B
Nix
{ lib
|
|
, fetchFromGitea
|
|
, rustPlatform
|
|
, nix-update-script
|
|
}:
|
|
let
|
|
version = "2.7.1";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
pname = "wallust";
|
|
inherit version;
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "explosion-mental";
|
|
repo = "wallust";
|
|
rev = version;
|
|
hash = "sha256-WhL2HWM1onRrCqWJPLnAVMd/f/xfLrK3mU8jFSLFjAM=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-pR2vdqMGJZ6zvXwwKUIPjb/lWzVgYqQ7C7/sk/+usc4=";
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "A better pywal";
|
|
homepage = "https://codeberg.org/explosion-mental/wallust";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ onemoresuza iynaix ];
|
|
downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${version}";
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "wallust";
|
|
};
|
|
}
|