Skip to content

Instantly share code, notes, and snippets.

@colemickens
Created January 8, 2021 23:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colemickens/c9c14a686d27b8967693b2db50e0a74c to your computer and use it in GitHub Desktop.
Save colemickens/c9c14a686d27b8967693b2db50e0a74c to your computer and use it in GitHub Desktop.
{ stdenv, pkgs, fetchgit, rustPlatform
, pkg-config
, ... }:
rustPlatform.buildRustPackage rec {
pname = "eww";
version = "1.0";
src = fetchgit {
url = "https://github.com/elkowar/eww.git";
sha256 = "0nyiv40w2d6lgb34qh8yzj0c3r19acx1pbg9df8nhqw2pm7zihwc";
};
nativeBuildInputs = [ pkg-config ];
cargoSha256 = "0di6bwaq7ph9yyg6rl7g6k411pi7m3sbb5njgiwc9iwv6c8ivqw6";
verifyCargoDeps = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment