Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1acfddb69ab2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bd55a78f6d15
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Sep 8, 2018

  1. Copy the full SHA
    bd55a78 View commit details
Showing with 31 additions and 0 deletions.
  1. +29 −0 pkgs/applications/editors/nano/nanorc/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
29 changes: 29 additions & 0 deletions pkgs/applications/editors/nano/nanorc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
name = "nanorc-${version}";
version = "2018-09-05";

src = fetchFromGitHub {
owner = "scopatz";
repo = "nanorc";
rev = "1e589cb729d24fba470228d429e6dde07973d597";
sha256 = "136yxr38lzrfv8bar0c6c56rh54q9s94zpwa19f425crh44drppl";
};

dontBuild = true;

installPhase = ''
mkdir -p $out/share
install *.nanorc $out/share/
'';

meta = {
description = "Improved Nano Syntax Highlighting Files";
homepage = https://github.com/scopatz/nanorc;
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ nequissimus ];
platforms = stdenv.lib.platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -17843,6 +17843,8 @@ with pkgs;

nanoblogger = callPackage ../applications/misc/nanoblogger { };

nanorc = callPackage ../applications/editors/nano/nanorc { };

navipowm = callPackage ../applications/misc/navipowm { };

navit = libsForQt5.callPackage ../applications/misc/navit { };