mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
34 lines
721 B
Nix
34 lines
721 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "endlines";
|
|
version = "1.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mdolidon";
|
|
repo = "endlines";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-M0IyY/WXR8qv9/qx5G0pG3EKqMoZAP3fJTZ6sSSMMyQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace "/usr/local" "$out"
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/mdolidon/endlines";
|
|
description = "Easy conversion between new-line conventions";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ zedseven ];
|
|
mainProgram = "endlines";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|