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