summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/pfsshell/default.nix
blob: fc6b37069aa85bd2c928f809395874e11a3fc55d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, lib, pkgs, fetchurl,fetchFromGitHub, upx, wine }:
stdenv.mkDerivation rec {
  pname = "pfsshell";
  version = "64f8c2";
  name = "${pname}-${version}";

  src = fetchFromGitHub {
    owner = "makefu";
    repo = "pfsshell";
    rev = version;
    sha256 = "01lbqf8s91p8id58xa16fp555i03vfycqvhv7qzpnrjy6yvp9dm8";
  };

  buildInputs = [ ];

  makeFlags = [ ];

  installPhase = ''
    mkdir -p $out/bin
    cp pfsshell $out/bin
  '';

  meta = {
    homepage = https://github.com/uyjulian/pfsshell ;
    description = "browse and transfer files to/from PFS filesystems";
  };
}