DEVELOPMENT ENVIRONMENT

~liljamo/anemos-test

ref: 2f981427284ee5fe9a55503f7da260009a379659 anemos-test/makeimg.nix -rw-r--r-- 401 bytes
2f981427Jonni Liljamo feat: init with makeimg packaged 15 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  stdenv,
  pkgs,
  ...
}: let
in
  stdenv.mkDerivation rec {
    pname = "makeimg";
    version = "0.14.0";

    src = pkgs.fetchFromSourcehut {
      owner = "~bitfehler";
      repo = "makeimg";
      tag = "v${version}";
      hash = "sha256-cLCLCG0+ShFazuVBG9GcvVmQNJtuMkKdGEP3QNJPTAo=";
    };

    dontBuild = true;

    installPhase = ''
      install -Dm755 -t $out/bin makeimg
    '';
  }