nixpkgs/pkgs/os-specific/linux/can-utils/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

26 lines
790 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "can-utils-${version}";
# There are no releases (source archives or git tags), so use the date of the
# latest commit in git master as version number.
version = "20140227";
src = fetchFromGitHub {
owner = "linux-can";
repo = "can-utils";
rev = "67a2bdcd336e6becfa5784742e18c88dbeddc973";
sha256 = "1v73b0nk1kb3kp5nbxp4xiygny6nfjgjnm7zgzrjgryvdrnws32z";
};
preConfigure = ''makeFlagsArray+=(PREFIX="$out")'';
meta = with stdenv.lib; {
description = "CAN userspace utilities and tools (for use with Linux SocketCAN)";
homepage = https://github.com/linux-can/can-utils;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}