depot/third_party/nixpkgs/pkgs/applications/misc/filet/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
554 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "filet";
version = "0.1.3";
src = fetchFromGitHub {
owner = "buffet";
repo = "filet";
rev = version;
sha256 = "0hm7589ih30axafqxhhs4fg1pvfhlqzyzzmfi2ilx8haq5111fsf";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "A fucking fucking fast file fucker (afffff)";
homepage = "https://github.com/buffet/filet";
license = licenses.mpl20;
platforms = platforms.all;
maintainers = with maintainers; [ buffet ];
};
}