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

Commits on Mar 7, 2019

  1. filet: 0.1.1 -> 0.1.2 (#57032)

    buffet authored and xeji committed Mar 7, 2019
    Copy the full SHA
    12153dc View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/misc/filet/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/misc/filet/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "filet";
version = "0.1.1";
version = "0.1.2";

src = fetchFromGitHub {
owner = "buffet";
repo = "filet";
rev = version;
sha256 = "0mpq0jlm7z853ybmijm2s7vb97afhjj80kgsc65ajb5lg95k6mnm";
sha256 = "0fk616rsninl97x4g1f4blidw6drh5dvjy6s41yf6zgragrr2xh5";
};

makeFlags = [ "PREFIX=$(out)" ];
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
description = "A fucking fucking fast file fucker (afffff)";
homepage = https://github.com/buffet/filet;
license = licenses.mpl20;
platforms = platforms.all;
platforms = platforms.linux;
maintainers = with maintainers; [ buffet ];
};
}