nixpkgs/pkgs/development/misc/loc/default.nix

27 lines
626 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform }:
2016-10-25 17:53:04 +00:00
with rustPlatform;
buildRustPackage rec {
2017-10-31 15:13:31 +00:00
version = "0.4.1";
2016-10-25 17:53:04 +00:00
name = "loc-${version}";
src = fetchFromGitHub {
2016-10-30 20:45:04 +00:00
owner = "cgag";
2016-10-25 17:53:04 +00:00
repo = "loc";
2017-10-31 15:13:31 +00:00
rev = "v${version}";
sha256 = "0086asrx48qlmc484pjz5r5znli85q6qgpfbd81gjlzylj7f57gg";
2016-10-25 17:53:04 +00:00
};
2017-10-31 15:13:31 +00:00
cargoSha256 = "0y2ww48vh667kkyg9pyjwcbh7fxi41bjnkhwp749crjqn2abimrk";
2016-10-25 17:53:04 +00:00
meta = {
homepage = https://github.com/cgag/loc;
2016-10-25 17:53:04 +00:00
description = "Count lines of code quickly";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ ];
2016-10-25 17:53:04 +00:00
platforms = with stdenv.lib.platforms; linux;
};
}