evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / cd / cdwe / package.nix
blobb891daee2980ceb0826c938c9b1dcc159e804d29
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "cdwe";
8   version = "0.3.0";
10   src = fetchFromGitHub {
11     owner = "synoet";
12     repo = "cdwe";
13     rev = version;
14     hash = "sha256-6NWhx82BXhWhbI18k5gE3vEkw9v5gstE8ICJhtq68rM=";
15   };
17   cargoHash = "sha256-V2eWVoRtfjHLe2AypYekUFzMnuV8RYU9Pb7Q1U3fwp4=";
19   meta = with lib; {
20     description = "Configurable cd wrapper that lets you define your environment per directory";
21     homepage = "https://github.com/synoet/cdwe";
22     license = licenses.mit;
23     maintainers = with maintainers; [ figsoda ];
24     mainProgram = "cdwe";
25   };