summaryrefslogtreecommitdiff
path: root/templates/basic/default.nix
blob: 5d0e6a1bfae5e511591d4dd188f0109ff9545a1c (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
{
  lib,
  stdenv,
  self,
  version,
  ...
}:
stdenv.mkDerivation {
  pname = "hello";
  inherit version;

  src = self;

  installPhase = ''
    echo "hi" > $out
  '';

  meta = with lib; {
    description = "";
    homepage = "";
    license = licenses.mit;
    maintainers = [maintainers.getchoo];
    platforms = platforms.linux;
  };
}