diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-10-23 09:52:20 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-10-23 09:52:20 -0400 | 
| commit | ccd93708b9430f2350b48bb77ef2b6aff31c0c8b (patch) | |
| tree | 19809ec721f71c6c7f190d239ff01288eeeb58fe /org | |
| parent | org mode, code-block names (diff) | |
nix
Diffstat (limited to 'org')
| -rw-r--r-- | org/spine_build_scaffold.org | 19 | 
1 files changed, 15 insertions, 4 deletions
diff --git a/org/spine_build_scaffold.org b/org/spine_build_scaffold.org index da1d01f..c36cb1e 100644 --- a/org/spine_build_scaffold.org +++ b/org/spine_build_scaffold.org @@ -988,6 +988,7 @@ gitsnapshot: distclean tangle  #+END_SRC  * dub.json TODO (subproject versions)                       :dub:json:config: +** dub.json  #+BEGIN_SRC sh  :tangle ../dub.json  { @@ -1044,7 +1045,7 @@ gitsnapshot: distclean tangle  }  #+END_SRC -** check dub.json +** +check dub.json+  #+BEGIN_SRC sh  :NO-tangle ../dub.json  { @@ -1943,12 +1944,22 @@ in pkgs.mkShell {  #+NAME: nix_project  #+BEGIN_SRC nix -{ pkgs ? import <nixpkgs> {}, }: +{ pkgs ? import <nixpkgs> {}, +  stdenv ? pkgs.stdenv, +}:  with import ./mkDub.nix { inherit pkgs; }; -mkDubDerivation { -  version = "0.11.1"; # optional +mkDubDerivation rec { +  name = "spine-${version}"; +  version = "0.11.1";    src = ./.;    buildInputs = [ pkgs.sqlite ]; +  meta = with stdenv.lib; { +    homepage = http://sisudoc.org; +    description = "a sisu like document parser"; +    license = licenses.agpl3Plus; +    platforms = platforms.linux; +    maintainers = [ Ralph Amissah ]; +  };  }  #+END_SRC  | 
