2022-08-11 08:18:17 +00:00
|
|
|
with import <nixpkgs> {};
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2022-08-14 20:02:18 +00:00
|
|
|
name = "environment";
|
2022-08-11 08:18:17 +00:00
|
|
|
buildInputs = [
|
|
|
|
git
|
|
|
|
git-lfs
|
2022-08-15 09:15:42 +00:00
|
|
|
docker-compose
|
2022-08-11 08:18:17 +00:00
|
|
|
];
|
|
|
|
}
|