5 lines
106 B
Nix
5 lines
106 B
Nix
with import <nixpkgs> {};
|
|
stdenv.mkDerivation {
|
|
name = "seafile";
|
|
buildInputs = [ seafile-client ];
|
|
}
|