mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
622 B
Nix
26 lines
622 B
Nix
{ fetchFromGitHub
|
|
, lib
|
|
, rustPlatform
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "urlencode";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dead10ck";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-LvLUbtMPVbYZMUb9vWhTscYfZPtEM5GrZme3azvVlPE=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-UPw+/wVOEM+kciOr70P+gdMCxtCKQ/SXsNAWA44v4v8=";
|
|
|
|
meta = with lib; {
|
|
description = "CLI utility for URL-encoding or -decoding strings";
|
|
homepage = "https://github.com/dead10ck/urlencode";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ l0b0 ];
|
|
mainProgram = "urlencode";
|
|
};
|
|
}
|