about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/filet/default.nix
blob: 0ee3f6fb221ae5bad5dc098f100a2bd2ec16dc4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, 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 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 ];
  };
}