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: 07fad592c5c1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4997dc3db3d5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 7, 2018

  1. light: 1.0 -> 1.1.2 (#44641)

    dtzWill authored and xeji committed Aug 7, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    BurntSushi Andrew Gallant
    Copy the full SHA
    4997dc3 View commit details
Showing with 8 additions and 5 deletions.
  1. +8 −5 pkgs/os-specific/linux/light/default.nix
13 changes: 8 additions & 5 deletions pkgs/os-specific/linux/light/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{ stdenv, fetchurl, help2man }:
{ stdenv, fetchFromGitHub, help2man }:

stdenv.mkDerivation rec {
version = "1.0";
version = "1.1.2";
name = "light-${version}";
src = fetchurl {
url = "https://github.com/haikarainen/light/archive/v${version}.tar.gz";
sha256 = "974608ee42ffe85cfd23184306d56d86ec4e6f4b0518bafcb7b3330998b1af64";
src = fetchFromGitHub {
owner = "haikarainen";
repo = "light";
rev = version;
sha256 = "0c934gxav9cgdf94li6dp0rfqmpday9d33vdn9xb2mfp4war9n4w";
};

buildInputs = [ help2man ];

installPhase = "mkdir -p $out/bin; cp light $out/bin/";