mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
23952fb641
We get a dependency list with pub2nix now. We can no longer easily distinguish between development dependency dependencies and regular dependency dependencies, but we weren't doing this anyway.
16 lines
383 B
Nix
16 lines
383 B
Nix
{ buildDartApplication, fetchFromGitHub, lib }:
|
|
|
|
buildDartApplication rec {
|
|
pname = "domine";
|
|
version = "nightly-2023-08-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "breitburg";
|
|
repo = pname;
|
|
rev = "d99d02b014d009b0201380a21ddaa57696dc77af";
|
|
sha256 = "038yfa22q7lzz85czmny3c1lkv8mjv4pq62cbmh054fqvgf3k3s4";
|
|
};
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
}
|