nixos-config/pkgs/terminal-tools/default.nix

27 lines
745 B
Nix
Raw Normal View History

2019-12-31 01:40:49 +01:00
{ rustPlatform, fetchgit, stdenv, ... }:
rustPlatform.buildRustPackage rec {
name = "terminal-tools-${version}";
version = "0.1.0";
#src = ./.;
src = fetchgit {
url = "https://git.ingolf-wagner.de/palo/terminal-tools";
rev = "e77560d04aa6b86da2a8dc235c7168ca9cdd7d45";
sha256 = "087cp0m42x3rjkkhh3zi48ahz4qkavr7lgc9fy299m9gjy6alb7p";
};
cargoSha256 = "0dgbw6idlzzpgljv0lxavimh1h8qlib0qrcn92f5imy6a12phrmm";
verifyCargoDeps = true;
meta = with stdenv.lib; {
description = "tools I use in my shell scripts which should be fast";
homepage = "https://git.ingolf-wagner.de/palo/terminal-tools";
license = licenses.gplv3;
maintainers = [ maintainers.mrVanDalo ];
platforms = platforms.all;
};
}